diff --git a/Check/.DS_Store b/Check/.DS_Store new file mode 100644 index 0000000..c0c73a2 Binary files /dev/null and b/Check/.DS_Store differ diff --git a/Check/call_handler.py b/Check/call_handler.py new file mode 100644 index 0000000..e4ae0a3 --- /dev/null +++ b/Check/call_handler.py @@ -0,0 +1,858 @@ +import asyncio +from datetime import datetime +import json +import logging +import logging.config +import os +import aiohttp +from aiohttp import ClientSession + +# AMI_CHANNEL_FILTER = [] +AMI_CHANNEL_FILTER = ["PJSIP/Megafon_3", "PJSIP/rt_769402"] +ID_VARS = ("ConnectedLineNum", "CallerIDNum", "DestCallerIDNum", "Source") + +CALL_DEBUG = True +CALL_DEBUG = False + +FIXRECORDS = True +FIXRECORDS = False + +MULTICHECK = True +MULTICHECK = False + +OPERATORS = ("10", "12", "13") + +records = {} + + +async def send_post_request(body: dict): + + async def post_request( + url: str, + headers: dict = None, + json: dict = None, + **kwargs, + ): + + try: + async with ClientSession() as session: + async with session.post( + url, json=json, headers=headers, **kwargs + ) as response: + response.raise_for_status() + return await response.json() + except aiohttp.ClientError as e: + return None + + data = {"call": body} + headers = { + "Content-Type": "application/json", + "Authorization": f"Bearer NjlmMmYzNThlOWNjYTI5ZGNlYTYzNz", + } + url = "http://188.64.134.62:3000/api/v2/telephony/common" + res = await post_request(url=url, headers=headers, json=data) + if CALL_DEBUG: + loggingDict("Server data", {"body": body, "response": res}) + + +def redirect_ids(responsibles): + return responsibles + + +async def incoming_call(linkedid, client, exten): + return None + + +async def call_started(linkedid, responsible): + return None + + +async def call_lost(linkedid, responsible): + return None + + +async def call_finished(linkedid, duration): + body = { + "status": "call_finished", + "call_session_id": linkedid, + "duration": duration, + } + if FIXRECORDS: + await send_post_request(body) + + return None + + +async def call_record_file(linkedid, uniqueid): + + if CALL_DEBUG: + logging.info(f"Record ID: {linkedid} -> {uniqueid}") + body = { + "status": "call_record_file", + "call_session_id": linkedid, + "file_link": f"http://192.168.75.10:3050/{uniqueid}", + } + if FIXRECORDS: + await send_post_request(body) + return None + + +def loggingDict(title: str, data: dict) -> None: + logging.info( + f"{title}: %s", + json.dumps(data, indent=4, ensure_ascii=False).encode("utf-8").decode("utf-8"), + ) + + +async def log_to_list(filename: str = None): + if not filename: + filename = "log/call.log" if CALL_DEBUG else "log/file.log" + events = [] + with open(filename, "r", encoding="utf-8") as f: + lines = f.read().splitlines() + count = 0 + event = {} + m_time = "" + line_num = 0 + for line in lines: + try: + int(line[0:1]) + m_time = line + except: + if line == "": + count += 1 + else: + line_data = line.split(": ") + try: + event[line_data[0]] = line_data[1] + except Exception as e: + logging.exception(e) + logging.error(line_data) + if count == 3: + count = 0 + if len(event) > 0: + events.append(event) + # loggingDict("event", event) + event = {"m_time": m_time, "line_num": line_num} + line_num += 1 + events.append(event) + return events + + +async def csv_to_dict(filename: str = None): + if not filename: + filename = "log/cdr.csv" + asterisk_records = {} + with open(filename, "r", encoding="utf-8") as f: + # lines = f.readlines() + lines = f.read().splitlines() + titles = lines[0].strip().split(",") + lines.pop(0) + for line in lines: + event = {} + line_data = line.strip().split(",") + for i in range(len(titles)): + event[titles[i]] = line_data[i] + if ( + event.get("peeraccount").startswith("external") + and event.get("accountcode") == "ANSWERED" + and event.get("dst") in OPERATORS + ): + asterisk_records[event.get("sequence")] = { + "id": event.get("did"), + "time": event.get("calldate"), + "responsible": event.get("dst"), + "duration": event.get("amaflags"), + } + # logging.info(f"{event.get('sequence')} -> {event.get('did')}") + # loggingDict("event", event) + # loggingDict("asterisk_records", asterisk_records) + return asterisk_records + + +class CallHandler: + def __init__(self): + self.calls = {} + self.date = datetime.now().date() + self.finished = [] + + async def handle_event(self, event): + def check_linkedid(event): + linkedid = event.get("Linkedid") + try: + linkedid_split = linkedid.split(".") + uniqueid = event.get("Uniqueid") + uniqueid_split = uniqueid.split(".") + if int(linkedid_split[1]) <= int(uniqueid_split[1]): + return True + return False + except: + return False + + def check_date(): + if self.date != datetime.now().date(): + self.date = datetime.now().date() + logging.info(f"Date changed to {self.date} and reset calls database") + self.finished = [] + self.calls = {} + + def channel_to_responsible(channel: str): + try: + if channel.startswith("Local"): + channel_data = channel.split("@") + resp = channel_data[0] + resp_data = resp.split("/") + responsible = resp_data[-1] + int(responsible) + return responsible + except: + pass + return None + + try: + if check_linkedid(event): + + linkedid = event.get("Linkedid") + + if linkedid in self.finished: + return + + if linkedid not in self.calls.keys(): + check_date() + context = event.get("Context") + if context == "from-internal": + self.finished.append(linkedid) + if CALL_DEBUG: + loggingDict("INTERNAL", event) + return + if context != "from-trunk": + return + if len(AMI_CHANNEL_FILTER) > 0: + event_channel = event.get("Channel") + if len(event_channel) < 7: + return + for filter in AMI_CHANNEL_FILTER: + if event_channel.startswith(filter): + await self.incoming_call(event, linkedid) + if CALL_DEBUG: + loggingDict("NEW", event) + return + self.finished.append(linkedid) + if CALL_DEBUG: + loggingDict("FILTER", event) + return + else: + await self.incoming_call(event, linkedid) + if CALL_DEBUG: + loggingDict(f"NEW: {linkedid}", event) + return + else: + if CALL_DEBUG: + logging.info( + f"Time: {event.get('m_time')}, Line: {event.get('line_num')}" + ) + if event.get("ChannelStateDesc") == "Ring": + if ( + event.get("Context") == "macro-user-callerid" + and ( + event.get("Event") == "VarSet" + or ( + event.get("Event") != "Newexten" + and event.get("Variable") == "MACRO_DEPTH" + ) + ) + and event.get("Application") + not in ("ExecIf", "Goto", "Return") + ) or ( + event.get("Variable") == "DIALEDPEERNUMBER" + and event.get("Exten") in OPERATORS + ): + try: + uniq = event.get("Uniqueid") + if uniq != linkedid: + if ( + uniq + not in self.calls[linkedid]["records"].values() + ): + target = "records" + else: + target = "records_duble" + if CALL_DEBUG: + logging.warning( + f"{uniq} -> {event.get('Channel')}" + ) + uniq_data = uniq.split(".") + if int(uniq_data[1]) > int(linkedid.split(".")[1]): + responsible = channel_to_responsible( + event.get("Channel") + ) + if responsible in OPERATORS: + if ( + responsible + in self.calls[linkedid][ + "records" + ].keys() + ): + resp_uniq = self.calls[linkedid][ + "records" + ][responsible] + if int(uniq_data[-1]) < int( + resp_uniq.split(".")[-1] + ): + return + + if ( + responsible + not in self.calls[linkedid][ + "responsibles" + ] + ): + self.calls[linkedid][ + "responsibles" + ].append(responsible) + if target == "records": + if ( + responsible + in self.calls[linkedid][ + target + ].keys() + ): + free_uniq = self.calls[linkedid][ + target + ][responsible] + self.calls[linkedid][target][ + responsible + ] = uniq + for ( + dub_id, + dub_uniq, + ) in self.calls[ + linkedid + ]["records_duble"].items(): + if dub_uniq == free_uniq: + if ( + dub_id + not in self.calls[ + linkedid + ][target].keys() + ): + self.calls[linkedid][ + target + ][dub_id] = dub_uniq + self.calls[linkedid][ + "records_duble" + ].pop(dub_id) + else: + self.calls[linkedid][target][ + responsible + ] = uniq + else: + if ( + uniq + not in self.calls[linkedid][ + target + ].values() + ): + if CALL_DEBUG: + logging.warning( + f"{uniq} -> {responsible}" + ) + if responsible not in self.calls[ + linkedid + ]["records"].keys() or ( + responsible + in self.calls[linkedid][ + "records" + ].keys() + and self.calls[linkedid][ + "records" + ][responsible] + != uniq + ): + if CALL_DEBUG: + logging.warning( + f"Add record ID: {responsible} -> {uniq}, type: {target}" + ) + self.calls[linkedid][target][ + responsible + ] = uniq + else: + if CALL_DEBUG: + loggingDict( + f"{responsible} -> {uniq}", + self.calls[linkedid][ + "records" + ], + ) + if CALL_DEBUG: + loggingDict( + "records", + self.calls[linkedid]["records"], + ) + loggingDict( + "records_duble", + self.calls[linkedid][ + "records_duble" + ], + ) + loggingDict( + f"Add record ID: {responsible} -> {uniq}, type: {target}", + event, + ) + return + except: + return + if ( + event.get("Context") == "sub-record-check" + and ( + ".wav" in event.get("AppData") + or "external" in event.get("AppData") + ) + and event.get("Exten") + == event.get("Extension") + == "recordcheck" + and event.get("Uniqueid") != linkedid + # and event.get("Uniqueid") + # not in self.calls[linkedid]["records"].values() + ): + responsible = channel_to_responsible(event.get("Channel")) + if ( + responsible in OPERATORS + and responsible + not in self.calls[linkedid]["responsibles"] + ): + self.calls[linkedid]["records"][responsible] = ( + event.get("Uniqueid") + ) + if ( + responsible + not in self.calls[linkedid]["responsibles"] + ): + self.calls[linkedid]["responsibles"].append( + responsible + ) + if self.calls[linkedid]["started"] is None: + if ( + ( + event.get("DialStatus") == "ANSWER" + and event.get("DestChannelStateDesc") == "Up" + ) + or event.get("Variable") + in ("BRIDGEPVTCALLID", "BRIDGEPEER") + or event.get("BridgeTechnology") == "simple_bridge" + ): + for var in ID_VARS: + answered = event.get(var) + if CALL_DEBUG: + logging.info( + f"{var} -> {answered} <= {self.calls[linkedid]['responsibles']} == {answered in self.calls[linkedid]['responsibles']}" + ) + if answered in self.calls[linkedid]["responsibles"]: + if CALL_DEBUG: + logging.info(f"Call started: {linkedid}") + await self.call_started( + linkedid, answered, event.get("m_time") + ) + if CALL_DEBUG: + loggingDict("Start", event) + break + if event.get("Disposition") == "NO ANSWER": + await self.call_lost(linkedid) + if CALL_DEBUG: + loggingDict("LOST", event) + return + else: + transfered = False + if ( + event.get("BridgeTechnology") == "simple_bridge" + and event.get("Context") == "from-internal-xfer" + and event.get("ChannelStateDesc") == "Up" + ): + new_responsible = event.get("Exten") + old_responsible = event.get("CallerIDNum") + transfered = True + if ( + event.get("BridgeTechnology") + == event.get("ToBridgeTechnology") + == event.get("FromBridgeTechnology") + == "simple_bridge" + and event.get("CallerIDNum") not in OPERATORS + and event.get("ChannelStateDesc") == "Up" + ): + new_responsible = event.get("CallerIDNum") + old_responsible = event.get("ConnectedLineNum") + transfered = True + + if transfered: + self.call_transfered( + linkedid, + new_responsible, + old_responsible, + event.get("m_time"), + ) + m_time = event.get("m_time") + pre_m_data = m_time.split(" ") + if len(pre_m_data) > 1: + m_time = pre_m_data[1] + m_time_data = m_time.split(":") + duration = int( + ( + datetime.now().replace( + hour=int(m_time_data[0]), + minute=int(m_time_data[1]), + second=int(m_time_data[2]), + ) + - self.calls[linkedid]["started"] + ).total_seconds() + ) + if ( + ( + ( + "BillableSeconds" in event.keys() + and event.get("Disposition") == "ANSWERED" + and ( + event.get("Uniqueid") != linkedid + or ( + event.get("Cause-txt") == "Normal Clearing" + or event.get("Context") + == "macro-hangupcall" + or event.get("Application") == "Hangup" + ) + ) + ) + or ( + "TalkTime" in event.keys() + and event.get("Event") == "VarSet" + ) + or ( + event.get("Application") == "Hangup" + and event.get("Disposition") != "NO ANSWER" + and event.get("ChannelStateDesc") != "Ring" + and ( + event.get("Uniqueid") != linkedid + or event.get("Cause-txt") == "Normal Clearing" + ) + and duration > 1 + ) + or ( + event.get("AppData") == "hangupcall," + and event.get("ChannelStateDesc") == "Up" + and ( + event.get("Uniqueid") != linkedid + or event.get("Context") == "ext-queues" + ) + # and duration >= 1 + ) + or ( + ( + event.get("Context") == "macro-hangupcall" + and event.get("ChannelStateDesc") == "Up" + ) + and ( + ( + event.get("ConnectedLineNum") in OPERATORS + or event.get("ConnectedLineNum") + in self.calls[linkedid]["responsibles"] + ) + or ( + ( + event.get("CallerIDNum") in OPERATORS + or event.get("CallerIDNum") + in self.calls[linkedid]["responsibles"] + ) + and event.get("Event") == "BridgeLeave" + ) + ) + and ( + event.get("Uniqueid") != linkedid + or duration > 1 + ) + ) + or (event.get("Event") == "Cdr") + ) + and event.get("Context") != "from-internal-xfer" + and not event.get("Event").startswith("RTC") + ): + if CALL_DEBUG: + loggingDict("Call ENDED?", event) + tolk_time = 0 + for var in ("BillableSeconds", "TalkTime"): + if var in event.keys(): + if CALL_DEBUG: + logging.info(f"{var} -> {event.get(var)}") + tolk_time += int(event.get(var)) + break + if tolk_time > duration: + duration = tolk_time + if CALL_DEBUG: + logging.info( + f"{duration=}, {tolk_time=}, {m_time=}, {self.calls[linkedid]['started']=}" + ) + transfer_duration = None + if self.calls[linkedid]["transfered"] is not None: + transfer_duration = int( + ( + datetime.now().replace( + hour=int(m_time_data[0]), + minute=int(m_time_data[1]), + second=int(m_time_data[2]), + ) + - self.calls[linkedid]["transfered"] + ).total_seconds() + ) + # if duration >= 1: + if duration >= 1 and ( + transfer_duration is None or transfer_duration > 1 + ): + record_id = None + if ( + event.get("AppData") == "hangupcall," + and event.get("Cause") == "16" + and event.get("Context") == "ext-local" + and event.get("ConnectedLineNum") in OPERATORS + and event.get("Uniqueid") != linkedid + ): + record_id = event.get("Uniqueid") + if record_id is None and duration < 2: + return + if event.get("Event") == "AttendedTransfer": + record_id = event.get("TransfereeUniqueid") + if ( + event.get("Context") == "macro-hangupcall" + and event.get("Uniqueid") != linkedid + and event.get("ConnectedLineNum") in OPERATORS + and "BillableSeconds" not in event.keys() + ): + record_id = event.get("Uniqueid") + if ( + event.get("Application") == "Hangup" + and event.get("Membership") == "static" + and event.get("ConnectedLineNum") in OPERATORS + and event.get("Uniqueid") != linkedid + ): + record_id = event.get("Uniqueid") + if record_id is None: + for var in ID_VARS: + answered = event.get(var) + if CALL_DEBUG: + logging.info( + f"{answered}, {var}, {self.calls[linkedid]['responsibles']}" + ) + if ( + answered + in self.calls[linkedid]["responsibles"] + ): + try: + record_id = self.calls[linkedid][ + "records" + ][answered] + except: + record_id = self.calls[linkedid][ + "records_duble" + ][answered] + break + if record_id is None: + answered = channel_to_responsible( + event.get("Channel") + ) + if answered in self.calls[linkedid]["responsibles"]: + try: + record_id = self.calls[linkedid]["records"][ + answered + ] + except: + record_id = self.calls[linkedid][ + "records_duble" + ][answered] + if record_id is None: + if CALL_DEBUG: + logging.warning( + f"Call not finished: {linkedid}" + ) + return + await self.call_finished( + linkedid, duration, record_id, m_time + ) + if CALL_DEBUG: + logging.info( + f"Call finished: {linkedid}: {duration} -> {record_id} <- {m_time}" + ) + # loggingDict("FINISH", event) + return + if CALL_DEBUG: + logging.warning(f"Call not finished: {linkedid}") + except Exception as e: + # logging.error( + # f"{linkedid} Time: {event.get('m_time')}, Line: {event.get('line_num')} Error: {e}" + # ) + # logging.info(f"Transfered: {self.calls[linkedid]['responsibles']}") + pass + + async def incoming_call(self, event, linkedid): + self.calls[linkedid] = { + "responsibles": [], + "started": None, + "transfered": None, + "records": {}, + "records_duble": {}, + } + exten = event.get("Exten") if event.get("Exten") else event.get("Extension") + await incoming_call(linkedid, event.get("CallerIDNum"), exten) + + def call_transfered(self, linkedid, new_responsible, old_responsible, m_time): + pre_m_data = m_time.split(" ") + if len(pre_m_data) > 1: + m_time = pre_m_data[1] + m_time_data = m_time.split(":") + try: + int(new_responsible) + if new_responsible not in self.calls[linkedid]["responsibles"]: + if old_responsible in self.calls[linkedid]["records"].keys(): + self.calls[linkedid]["records"][new_responsible] = self.calls[ + linkedid + ]["records"][old_responsible] + self.calls[linkedid]["responsibles"].append(new_responsible) + self.calls[linkedid]["transfered"] = datetime.now().replace( + hour=int(m_time_data[0]), + minute=int(m_time_data[1]), + second=int(m_time_data[2]), + ) + if CALL_DEBUG: + logging.warning( + f"Transfered: from {old_responsible} to {new_responsible}" + ) + else: + if old_responsible in self.calls[linkedid]["records_duble"].keys(): + self.calls[linkedid]["records"][new_responsible] = self.calls[ + linkedid + ]["records_duble"][old_responsible] + self.calls[linkedid]["responsibles"].append(new_responsible) + self.calls[linkedid]["transfered"] = datetime.now().replace( + hour=int(m_time_data[0]), + minute=int(m_time_data[1]), + second=int(m_time_data[2]), + ) + if CALL_DEBUG: + logging.warning( + f"Transfered: from {old_responsible} to {new_responsible}" + ) + except: + logging.info(f"Call not transfered: {new_responsible}") + + async def call_started(self, linkedid, responsible, m_time): + pre_m_data = m_time.split(" ") + if len(pre_m_data) > 1: + m_time = pre_m_data[1] + m_time_data = m_time.split(":") + self.calls[linkedid]["started"] = datetime.now().replace( + hour=int(m_time_data[0]), + minute=int(m_time_data[1]), + second=int(m_time_data[2]), + ) + # logging.info(f"Call started: ID={linkedid}, Responsible={responsible}") + await call_started(linkedid, redirect_ids(responsible)) + + async def call_finished(self, linkedid, duration, uniqueid, m_time): + # logging.info( + # f"Call finished: ID={linkedid}, Duration={duration}, UniqueID={uniqueid}" + # ) + self.finished.append(linkedid) + self.calls.pop(linkedid) + records[linkedid] = {"duration": duration, "uniqueid": uniqueid, "time": m_time} + await call_finished(linkedid, duration) + await call_record_file(linkedid, uniqueid) + + async def call_lost(self, linkedid): + # logging.info( + # f"Call lost: ID={linkedid}, responsibles: {self.calls[linkedid]['responsibles']}" + # ) + await call_lost(linkedid, redirect_ids(self.calls[linkedid]["responsibles"])) + + +async def multiCheck(): + path = "log/data/" + log_files = [f.split(".")[0] for f in os.listdir(path) if f.endswith(".log")] + return log_files + + +async def main(): + + if MULTICHECK and not CALL_DEBUG: + check_list = await multiCheck() + check_total = { + "OK": 0, + "Wrong ID": 0, + "Wrong Duration": 0, + "Error": 0, + } + else: + check_list = [None] + for filename in check_list: + events = ( + await log_to_list(f"log/data/{filename}.log") + if MULTICHECK + else await log_to_list() + ) + handler = CallHandler() + for event in events: + await handler.handle_event(event) + asterisk = ( + await csv_to_dict(f"log/data/{filename}.csv") + if MULTICHECK + else await csv_to_dict() + ) + report_date = filename if filename else datetime.now().strftime("%Y-%m-%d") + check_dict = { + "summary": { + "OK": 0, + "Wrong ID": 0, + "Wrong Duration": 0, + "Error": 0, + "date": report_date, + }, + "details": {}, + } + for linkedid, call_data in asterisk.items(): + record = records.get(linkedid) + # logging.info(record) + if record is not None and record["uniqueid"] == call_data["id"]: + check_dict["details"][linkedid] = True + check_dict["summary"]["OK"] += 1 + if not CALL_DEBUG: + if (int(record["duration"]) - int(call_data["duration"])) > -2: + # logging.info( + # f"{call_data['time']}: {linkedid} -> {call_data['id']} <{call_data['duration']}> (Asterisk) == {record['uniqueid']} <{record['duration']}> (Medods)" + # ) + pass + else: + logging.warning( + f"{call_data['time']}: {linkedid} -> {call_data['id']} <{call_data['duration']}> (Asterisk) == {record['uniqueid']} <{record['duration']}> -{record['time']}- (Medods)" + ) + check_dict["summary"]["Wrong Duration"] += 1 + else: + check_dict["details"][linkedid] = False + + if not CALL_DEBUG: + if linkedid not in handler.finished: + if record is None: + logging.error( + f"{call_data['time']}: {linkedid} -> {call_data['id']} [{call_data['responsible']}] (Asterisk) != {record} (Medods)" + ) + check_dict["summary"]["Error"] += 1 + else: + logging.warning( + f"{call_data['time']}: {linkedid} -> {call_data['id']} [{call_data['responsible']}] (Asterisk) != {record['uniqueid']} (Medods)" + ) + check_dict["summary"]["Wrong ID"] += 1 + if MULTICHECK and not CALL_DEBUG: + for key in check_total.keys(): + check_total[key] += check_dict["summary"][key] + if not CALL_DEBUG: + loggingDict("Day result", check_dict["summary"]) + if MULTICHECK and not CALL_DEBUG: + loggingDict("Total result", check_total) + + +if __name__ == "__main__": + logging.config.fileConfig("log.ini", disable_existing_loggers=False) + asyncio.run(main()) diff --git a/Check/log.ini b/Check/log.ini new file mode 100644 index 0000000..5146f1d --- /dev/null +++ b/Check/log.ini @@ -0,0 +1,24 @@ +[loggers] +keys=root + +[handlers] +keys=logconsole + +[formatters] +keys=formatter +encoding=utf-8 + +[logger_root] +level=INFO +handlers=logconsole + +[formatter_formatter] +class=colorlog.ColoredFormatter +format=%(log_color)s%(asctime)s: [%(levelname)s] %(message)s [%(module)s.%(funcName)s():%(lineno)d] +datefmt=%Y-%m-%d %H:%M:%S + +[handler_logconsole] +class=colorlog.StreamHandler +level=DEBUG +args=(sys.stdout,) +formatter=formatter \ No newline at end of file diff --git a/Check/log/.DS_Store b/Check/log/.DS_Store new file mode 100644 index 0000000..0668091 Binary files /dev/null and b/Check/log/.DS_Store differ diff --git a/Check/log/call.log b/Check/log/call.log new file mode 100644 index 0000000..8438d30 --- /dev/null +++ b/Check/log/call.log @@ -0,0 +1,4289 @@ + + +2024-08-16 14:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: s +Application: GotoIf +AppData: 0?initialized +Variable: LOCAL(ARGC) +Value: 3 + + +2024-08-16 14:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: __YEAR +Value: 2024 +Extension: s +Application: +AppData: __YEAR=2024 + + +2024-08-16 14:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG1) +Value: dontcare + + +2024-08-16 14:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +2024-08-16 14:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 +Variable: __FROM_DID +Value: 79217365096 + + +2024-08-16 14:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +2024-08-16 14:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: 79217365096 +Application: Ans +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +2024-08-16 14:27:28 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 + + +2024-08-16 14:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +2024-08-16 14:27:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +2024-08-16 14:27:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: 2 +Application: AGI +AppData: agi + + +2024-08-16 14:27:29 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +CommandId: 146928723 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +2024-08-16 14:27:29 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +CommandId: 702312208 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +2024-08-16 14:27:30 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +CommandId: 136809750 +Command: VERBOSE "Goto +ResultCode: 200 +Result: Success + + +2024-08-16 14:27:30 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +CommandId: 1590962523 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: DB_RESULT +Value: +Extension: 194 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +2024-08-16 14:27:30 + +Event: VarSet +Privilege: dialpl +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +2024-08-16 14:27:30 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: CHANEXTEN +Value: Megafon_3-00001097 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001097 + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001097 +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +2024-08-16 14:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 53 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: CDR(cnum)=79663163530 +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79663163530 + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan, +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: MacroExit +AppData: + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000109 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: VQ_CIDPP +Value: +Extension: 194 +Application: Set +AppData: VQ_CIDPP= + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: QJOINMSG +Value: custom/Privet_23_08 + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 20 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: VQ_RETRY +Value: +Extension: 194 +Application: Set +AppData: VQ_RETRY= + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against dontcare +Variable: LOCAL(ARGC) +Value: 3 + + +2024-08-16 14:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: s +Application: Return +AppData: +Variable: ARG3 +Value: + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ex +Exten: 194 +Priority: 35 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: GotoIf +AppData: 0?QVQANNOUNCE + + +2024-08-16 14:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +2024-08-16 14:27:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 43 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: 194 +Application: Set +AppData: QAANNOUNCE= + + +2024-08-16 14:27:38 + +Event: VarSet +Privilege: dial +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 49 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: 194 +Application: Set +AppData: QMAXWAIT=600 +Variable: VQ_MOH +Value: + + +2024-08-16 14:27:38 + +Event: +Privilege: call,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Variable: QUEUEJOINTIME +Value: 1723807658 +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +2024-08-16 14:27:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1723807658.9479 +Linkedid: 1723807648.9478 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +2024-08-16 14:27:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1723807658.9479 +Linkedid: 1723807648.9478 +Variable: __MOHCLASS +Value: + + +2024-08-16 14:27:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n + + +2024-08-16 14:27:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: __TTL +Value: 64 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: __MONTH +Value: 08 + + +2024-08-16 14:27:39 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a32;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1723807658.9479 +LocalOneLinkedid: 1723807648.9478 +LocalTwoChannel: Local/13@from-queue-00000a32;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79663163530 +LocalTwoCallerIDName: 79663163530 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1723807658.9480 +LocalTwoLinkedid: 1723807648.9478 +LocalOptimization: No +DestChannel: +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79663163530 +DestConnectedLineName: 79663163530 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1723807658.9479 +DestLinkedid: 1723807648.9478 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 7921736 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1723807658.9481 +Linkedid: 1723807648.9478 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1723807658.9481 +Linkedid: 1723807648.9478 +Variable: __RINGINGSENT +Value: TRUE + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1723807658.9481 +Linkedid: 1723807648.9478 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: d +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: __YEAR +Value: 2024 + + +2024-08-16 14:27:39 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a33;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1723807658.9481 +LocalOneLinkedid: 1723807648.9478 +LocalTwoChannel: Local/10@from-queue-00000a33;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79663163530 +LocalTwoCallerIDName: 79663163530 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1723807658.9482 +LocalTwoLinkedid: 1723807648.9478 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000a33;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79663163530 +DestConnectedLineName: 79663163530 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1723807658.9481 +DestLinkedid: 1723807648.9478 +Queue: 194 +Interface: Local/10@from-queue/n + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +DestChannel: Local/10@from-queue-00000a33;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1723807658.9481 +DestLinkedid: 1723807648.9478 +DialString: Local/10@from-queue/n +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: __FROMQ +Value: true + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_EXTEN +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a32;2 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: CHANEXTEN +Value: 13 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7966 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: CALLERID(name)=79663163530 +Variable: MACRO_DEPTH +Value: 2 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 1 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: __EXTTOCALL +Value: 13 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: LOCAL(ARG2) +Value: 13 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 796631 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 11 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: fro +Exten: 10 +Priority: 3 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: __FROMQ +Value: true +Extension: 10 +Application: GotoIf +AppData: 0?hangup + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: __RINGTIMER +Value: 60 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79663163530-20240816-142738-1723807658.9480 +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: mac +Exten: s +Priority: 2 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a33;2 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: CHANEXTEN +Value: 10 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@ +Variable: MACRO_DEPTH +Value: 2 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 7966316 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: CALLERID(name)=79663163530 +Variable: MACRO_DEPTH +Value: 2 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +2024-08-16 14:27:39 + +Event: Newexte +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: DB_RESULT +Value: PJSIP/13 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: s +Priority: 29 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 45 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: ANSWEREDTIME +Value: + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79663163530 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: RingGroupMethod=n +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: +Application: GotoIf +AppData: 0?initialized +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: __FROMEXTEN +Value: 79663163530 +Extension: s +Application: Set +AppData: __FROMEXTEN=79663163530 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: Ne +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: __CALLFILENAME +Value: external-10-79663163530-20240816-142738-1723807658.9482 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79663163530-20240816-142738-1723807658.9482 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000a33;2 +Variable: MACRO_DEPTH +Value: 1 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-c +Exten: recordcheck +Priority: 25 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 12 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: ARG3 +Value: 10 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: DB_RESULT +Value: 10 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001098 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1723807658.9483 +Linkedid: 1723807648.9478 +Extension: dstring +Application: Return +AppData: +Variable: __KEEPCID +Value: TRUE + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001098 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1723807658.9483 +Linkedid: 1723807648.9478 +Variable: __YEAR +Value: 2024 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001098 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1723807658.9483 +Linkedid: 1723807648.9478 +Variable: __RVOL_MODE +Value: dontcare + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001098 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1723807658.9483 +Linkedid: 1723807648.9478 +Variable: __FROM_DID +Value: 79217365096 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001098 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79663163530 +ConnectedLineName: 79663163530 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1723807658.9483 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +2024-08-16 14:27:39 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-00001098 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79663163530 +DestConnectedLineName: 79663163530 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1723807658.9483 +DestLinkedid: 1723807648.9478 +DialString: 13/sip +Device: Local/13@from-queue +State: INUSE + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 796631635 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +2024-08-16 14:27:39 + +Event: Newext +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: ANSWEREDTIME +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001099 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1723807658.9484 +Linkedid: 1723807648.9478 +Variable: __CWIGNORE +Value: TRUE + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001099 +ChannelState: +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1723807658.9484 +Linkedid: 1723807648.9478 +Variable: __MONTH +Value: 08 + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001099 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1723807658.9484 +Linkedid: 1723807648.9478 +Variable: __RVOL_MODE +Value: dontcare + + +2024-08-16 14:27:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001099 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1723807658.9484 +Linkedid: 1723807648.9478 +Variable: __FROM_DID +Value: 79217365096 + + +2024-08-16 14:27:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001099 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79663163530 +ConnectedLineName: 79663163530 +Language: ru +AccountCode: +Context: func-apply-sipheade +Exten: s +Priority: 3 +Uniqueid: 1723807658.9484 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +2024-08-16 14:27:39 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-qu +Exten: s +Priority: 55 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/10-00001099 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79663163530 +DestConnectedLineName: 79663163530 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1723807658.9484 +DestLinkedid: 1723807648.9478 +DialString: 10/sip +Device: Local/10@from-queue +State: INUSE + + +2024-08-16 14:27:41 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 2726 +Device: PJSIP/13 +State: RINGING +DestChannel: Local/13@from-queue-00000a32;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79663163530 +DestConnectedLineName: 79663163530 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1723807658.9479 +DestLinkedid: 1723807648.9478 +DialStatus: RINGING + + +2024-08-16 14:27:42 + +Event: DialState +Privilege: call,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3141 +DestChannel: PJSIP/10-00001099 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79663163530 +DestConnectedLineName: 79663163530 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1723807658.9484 +DestLinkedid: 1723807648.9478 +DialStatus: RINGING + + +2024-08-16 14:27:44 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/10-00001099 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79663163530 +ConnectedLineName: 79663163530 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1723807658.9484 +Linkedid: 1723807648.9478 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse + + +2024-08-16 14:27:44 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 263 +LastCall: 1723807645 +LastPause: 0 +LoginTime: 1723338404 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79663163530 +ConnectedLineName: 79663163530 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1723807658.9484 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CFIGNORE= + + +2024-08-16 14:27:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: FORWARD_CONTEXT +Value: from-internal +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal + + +2024-08-16 14:27:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001099 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001097)= +Variable: SHARED(BLKVM) +Value: + + +2024-08-16 14:27:44 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000a32;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79663163530 +DestConnectedLineName: 79663163530 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1723807658.9479 +DestLinkedid: 1723807648.9478 +DialStatus: CANCEL +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Device: Local/10@from-queue +State: INUSE +BridgeUniqueid: d7179ea9-01dc-44c5-8242-4ac43a6c8920 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +2024-08-16 14:27:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/13-00001098 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79663163530 +DestConnectedLineName: 79663163530 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1723807658.9483 +DestLinkedid: 1723807648.9478 +DialStatus: CANCEL +Variable: ARG1 +Value: novm +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +2024-08-16 14:27:44 + +Event: VarSet +Privilege: dialplan,all +Device: Local/13@from-queue +State: NOT_INUSE +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 55 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: ARG1 +Value: +Queue: 194 +Position: 1 +Count: 0 + + +2024-08-16 14:27:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_PRIORITY +Value: +DestChannel: Local/10@from-queue-00000a33;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79663163530 +DestConnectedLineName: 79663163530 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1723807658.9481 +DestLinkedid: 1723807648.9478 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +RingTime: 5 +Cause: 16 + + +2024-08-16 14:27:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 390e6c23-91b9-4aad-a2af-855ca3130d7d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: GotoIf +AppData: 1?theend + + +2024-08-16 14:27:44 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/13 +State: NOT_INUSE +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1723807397 +LastPause: 0 +LoginTime: 1723338404 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: d7179ea9-01dc-44c5-8242-4ac43a6c8920 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID +Value: 32149fbb-7598-403c-a + + +2024-08-16 14:27:44 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1723807658.9480 +Linkedid: 1723807648.9478 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79663163530 +Destination: 13 +DestinationContext: ext-local +CallerID: "79663163530" <79663163530> +DestinationChannel: PJSIP/13-00001098 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-16 14 +AnswerTime: +EndTime: 2024-08-16 14 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1723807658.9480 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9499 +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: 390e6c23-91b9-4aad-a2af-855ca3130d7d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +2024-08-16 14:27:44 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9501 + + +2024-08-16 14:27:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: RTPAUDIOQOSBRIDGED +Value: ssrc=2012747538;themssrc=2809871544;lp=0;rxjitter=0.000000;rxcount=431;txjitter=0.001250;txcount=454;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +2024-08-16 14:27:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79663163530 +ConnectedLineName: 79663163530 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1723807658.9484 +Linkedid: 1723807648.9478 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000197; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +2024-08-16 14:27:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 7966316353 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: ANSWEREDTIME +Value: 9 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 264 +LastCall: 1723807673 +LastPause: 0 +LoginTime: 1723338404 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: d7179ea9-01dc-44c5-8242-4ac43a6c8920 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +2024-08-16 14:27:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_CONTEXT +Value: ext-local + + +2024-08-16 14:27:53 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/10@from-queue-00000a33;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1723807658.9482 +Linkedid: 1723807648.9478 +Variable: MACRO_PRIORITY +Value: + + +2024-08-16 14:27:53 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000a33;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79663163530 +ConnectedLineName: 79663163530 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1723807658.9481 +Linkedid: 1723807648.9478 +Cause: 16 +Cause-txt: Normal Clearing +Variable: BRIDGEPEER +Value: +Source: 79663163530 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79663163530" <79663163530> +DestinationChannel: Local/13@from-queue-00000a32;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-16 14 +AnswerTime: 2024-08-16 14 +EndTime: 2024-08-16 14 +Duration: 15 +BillableSeconds: 15 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1723807648.9478 +UserField: +Device: Local/10@from-queue +State: NOT_INUSE +DestChannel: Local/10@from-queue-00000a33;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79663163530 +DestConnectedLineName: 79663163530 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1723807658.9481 +DestLinkedid: 1723807648.9478 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +TalkTime: 9 +Reason: agent +BridgeUniqueid: 390e6c23-91b9-4aad-a2af-855ca3130d7d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +2024-08-16 14:27:53 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001097 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79663163530 +CallerIDName: 79663163530 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1723807648.9478 +Linkedid: 1723807648.9478 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9504 +Source: 79663163530 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79663163530" <79663163530> +DestinationChannel: Local/10@from-queue-00000a33;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-16 14 +AnswerTime: 2024-08-16 14 diff --git a/Check/log/cdr.csv b/Check/log/cdr.csv new file mode 100644 index 0000000..c503d21 --- /dev/null +++ b/Check/log/cdr.csv @@ -0,0 +1,480 @@ +calldate,clid,src,dst,dcontext,channel,dstchannel,lastapp,lastdata,duration,billsec,disposition,amaflags,accountcode,uniqueid,userfield,did,cnum,cnam,outbound_cnum,outbound_cnam,dst_cnam,recordingfile,linkedid,peeraccount,sequence +"2024-08-24 15:13:10","""79524859920"" <79524859920>",79524859920,10,play-system-recording,PJSIP/rt_769402-000012cf,,Playback,custom/Work_out,6,5,ANSWERED,3,,1724501590.10571,,78162769402,,,,,,,1724501590.10571,,12460 +"2024-08-24 15:07:01","""79522006990"" <79522006990>",79522006990,10,play-system-recording,PJSIP/Megafon_3-000012ce,,Playback,custom/Work_out,15,15,ANSWERED,3,,1724501221.10570,,79217365096,,,,,,,1724501221.10570,,12459 +"2024-08-24 14:54:33","""78162974237"" <78162974237>",78162974237,194,ext-queues,PJSIP/Megafon_3-000012cd,,Playback,"custom/Privet_23_08, ",7,7,ANSWERED,3,,1724500473.10569,,79217365096,78162974237,78162974237,,,,,1724500473.10569,,12458 +"2024-08-24 14:51:36","""79116018671"" <79116018671>",79116018671,13,ext-local,Local/13@from-queue-00000b34;2,PJSIP/13-000012ca,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",44,38,ANSWERED,3,,1724500296.10563,,,79116018671,79116018671,,,,external-13-79116018671-20240824-145136-1724500296.10563.wav,1724500285.10559,,12450 +"2024-08-24 14:51:36","""79116018671"" <79116018671>",79116018671,194,ext-queues,PJSIP/Megafon_3-000012c9,Local/10@from-queue-00000b35;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724500285.10559,,79217365096,79116018671,79116018671,,,,,1724500285.10559,,12454 +"2024-08-24 14:51:36","""79116018671"" <79116018671>",79116018671,194,ext-queues,PJSIP/Megafon_3-000012c9,Local/13@from-queue-00000b34;1,Queue,"194,tR,,,600,,,,,",44,44,ANSWERED,3,,1724500285.10559,,79217365096,79116018671,79116018671,,,,,1724500285.10559,,12451 +"2024-08-24 14:51:36","""79116018671"" <79116018671>",79116018671,10,ext-local,Local/10@from-queue-00000b35;2,PJSIP/10-000012cc,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724500296.10565,,,79116018671,79116018671,,,,external-10-79116018671-20240824-145136-1724500296.10565.wav,1724500285.10559,,12453 +"2024-08-24 14:51:36","""79116018671"" <79116018671>",79116018671,12,ext-local,Local/12@from-queue-00000b33;2,PJSIP/12-000012cb,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724500296.10561,,,79116018671,79116018671,,,,external-12-79116018671-20240824-145136-1724500296.10561.wav,1724500285.10559,,12448 +"2024-08-24 14:51:25","""79116018671"" <79116018671>",79116018671,194,ext-queues,PJSIP/Megafon_3-000012c9,Local/12@from-queue-00000b33;1,Queue,"194,tR,,,600,,,,,",17,17,"NO ANSWER",3,,1724500285.10559,,79217365096,79116018671,79116018671,,,,,1724500285.10559,,12446 +"2024-08-24 14:47:58","""79217072323"" <79217072323>",79217072323,12,ext-local,Local/12@from-queue-00000b31;2,PJSIP/12-000012c7,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",13,0,"NO ANSWER",3,,1724500078.10554,,,79217072323,79217072323,,,,external-12-79217072323-20240824-144758-1724500078.10554.wav,1724500010.10534,,12439 +"2024-08-24 14:47:58","""79217072323"" <79217072323>",79217072323,10,ext-local,Local/10@from-queue-00000b32;2,PJSIP/10-000012c8,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",13,0,"NO ANSWER",3,,1724500078.10556,,,79217072323,79217072323,,,,external-10-79217072323-20240824-144758-1724500078.10556.wav,1724500010.10534,,12442 +"2024-08-24 14:47:58","""79217072323"" <79217072323>",79217072323,194,ext-queues,PJSIP/Megafon_3-000012c0,Local/10@from-queue-00000b32;1,Queue,"194,tR,,,600,,,,,",13,13,"NO ANSWER",3,,1724500010.10534,,79217365096,79217072323,79217072323,,,,,1724500010.10534,,12443 +"2024-08-24 14:47:58","""79217072323"" <79217072323>",79217072323,194,ext-queues,PJSIP/Megafon_3-000012c0,Local/12@from-queue-00000b31;1,Queue,"194,tR,,,600,,,,,",13,13,"NO ANSWER",3,,1724500010.10534,,79217365096,79217072323,79217072323,,,,,1724500010.10534,,12440 +"2024-08-24 14:47:23","""79217072323"" <79217072323>",79217072323,194,ext-queues,PJSIP/Megafon_3-000012c0,Local/10@from-queue-00000b30;1,Queue,"194,tR,,,600,,,,,",30,30,"NO ANSWER",3,,1724500010.10534,,79217365096,79217072323,79217072323,,,,,1724500010.10534,,12435 +"2024-08-24 14:47:23","""79217072323"" <79217072323>",79217072323,10,ext-local,Local/10@from-queue-00000b30;2,PJSIP/10-000012c6,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",30,0,"NO ANSWER",3,,1724500043.10550,,,79217072323,79217072323,,,,external-10-79217072323-20240824-144723-1724500043.10550.wav,1724500010.10534,,12434 +"2024-08-24 14:47:23","""79217072323"" <79217072323>",79217072323,12,ext-local,Local/12@from-queue-00000b2f;2,PJSIP/12-000012c5,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",30,0,"NO ANSWER",3,,1724500043.10548,,,79217072323,79217072323,,,,external-12-79217072323-20240824-144723-1724500043.10548.wav,1724500010.10534,,12432 +"2024-08-24 14:47:09","""79522006990"" <79522006990>",79522006990,10,ext-local,Local/10@from-queue-00000b2e;2,PJSIP/10-000012c3,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724500029.10544,,,79522006990,79522006990,,,,external-10-79522006990-20240824-144709-1724500029.10544.wav,1724499985.10533,,12427 +"2024-08-24 14:47:09","""79522006990"" <79522006990>",79522006990,194,ext-queues,PJSIP/Megafon_3-000012bf,Local/10@from-queue-00000b2e;1,Queue,"194,tR,,,600,,,,,",7,7,"NO ANSWER",3,,1724499985.10533,,79217365096,79522006990,79522006990,,,,,1724499985.10533,,12428 +"2024-08-24 14:47:09","""79522006990"" <79522006990>",79522006990,12,ext-local,Local/12@from-queue-00000b2d;2,PJSIP/12-000012c4,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724500029.10542,,,79522006990,79522006990,,,,external-12-79522006990-20240824-144709-1724500029.10542.wav,1724499985.10533,,12425 +"2024-08-24 14:46:55","""79516679774"" <79516679774>",79516679774,194,ext-queues,PJSIP/Megafon_3-000012bc,Local/13@from-queue-00000b2c;1,Queue,"194,tR,,,600,,,,,",110,110,ANSWERED,3,,1724499962.10526,,79217365096,79516679774,79516679774,,,,,1724499962.10526,,12421 +"2024-08-24 14:46:55","""79516679774"" <79516679774>",79516679774,194,ext-queues,PJSIP/Megafon_3-000012bc,Local/12@from-queue-00000b2b;1,Queue,"194,tR,,,600,,,,,",13,13,"NO ANSWER",3,,1724499962.10526,,79217365096,79516679774,79516679774,,,,,1724499962.10526,,12418 +"2024-08-24 14:46:55","""79516679774"" <79516679774>",79516679774,13,ext-local,Local/13@from-queue-00000b2c;2,PJSIP/13-000012c1,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",110,96,ANSWERED,3,,1724500015.10538,,,79516679774,79516679774,,,,external-13-79516679774-20240824-144655-1724500015.10538.wav,1724499962.10526,,12420 +"2024-08-24 14:46:55","""79516679774"" <79516679774>",79516679774,12,ext-local,Local/12@from-queue-00000b2b;2,PJSIP/12-000012c2,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",13,0,"NO ANSWER",3,,1724500015.10536,,,79516679774,79516679774,,,,external-12-79516679774-20240824-144655-1724500015.10536.wav,1724499962.10526,,12417 +"2024-08-24 14:46:50","""79217072323"" <79217072323>",79217072323,194,ext-queues,PJSIP/Megafon_3-000012c0,Local/12@from-queue-00000b2f;1,Queue,"194,tR,,,600,,,,,",62,62,"NO ANSWER",3,,1724500010.10534,,79217365096,79217072323,79217072323,,,,,1724500010.10534,,12415 +"2024-08-24 14:46:25","""79522006990"" <79522006990>",79522006990,194,ext-queues,PJSIP/Megafon_3-000012bf,Local/12@from-queue-00000b2d;1,Queue,"194,tR,,,600,,,,,",51,51,"NO ANSWER",3,,1724499985.10533,,79217365096,79522006990,79522006990,,,,,1724499985.10533,,12414 +"2024-08-24 14:46:13","""79516679774"" <79516679774>",79516679774,194,ext-queues,PJSIP/Megafon_3-000012bc,Local/13@from-queue-00000b2a;1,Queue,"194,tR,,,600,,,,,",30,30,"NO ANSWER",3,,1724499962.10526,,79217365096,79516679774,79516679774,,,,,1724499962.10526,,12411 +"2024-08-24 14:46:13","""79516679774"" <79516679774>",79516679774,13,ext-local,Local/13@from-queue-00000b2a;2,PJSIP/13-000012bd,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",30,0,"NO ANSWER",3,,1724499973.10530,,,79516679774,79516679774,,,,external-13-79516679774-20240824-144613-1724499973.10530.wav,1724499962.10526,,12410 +"2024-08-24 14:46:13","""79516679774"" <79516679774>",79516679774,12,ext-local,Local/12@from-queue-00000b29;2,PJSIP/12-000012be,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",30,0,"NO ANSWER",3,,1724499973.10528,,,79516679774,79516679774,,,,external-12-79516679774-20240824-144613-1724499973.10528.wav,1724499962.10526,,12408 +"2024-08-24 14:46:02","""79516679774"" <79516679774>",79516679774,194,ext-queues,PJSIP/Megafon_3-000012bc,Local/12@from-queue-00000b29;1,Queue,"194,tR,,,600,,,,,",40,40,"NO ANSWER",3,,1724499962.10526,,79217365096,79516679774,79516679774,,,,,1724499962.10526,,12406 +"2024-08-24 14:45:20","""79539020670"" <79539020670>",79539020670,194,ext-queues,PJSIP/Megafon_3-000012b8,Local/10@from-queue-00000b28;1,Queue,"194,tR,,,600,,,,,",107,107,ANSWERED,3,,1724499909.10516,,79217365096,79539020670,79539020670,,,,,1724499909.10516,,12402 +"2024-08-24 14:45:20","""79539020670"" <79539020670>",79539020670,194,ext-queues,PJSIP/Megafon_3-000012b8,Local/13@from-queue-00000b27;1,Queue,"194,tR,,,600,,,,,",12,12,"NO ANSWER",3,,1724499909.10516,,79217365096,79539020670,79539020670,,,,,1724499909.10516,,12399 +"2024-08-24 14:45:20","""79539020670"" <79539020670>",79539020670,10,ext-local,Local/10@from-queue-00000b28;2,PJSIP/10-000012bb,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",107,95,ANSWERED,3,,1724499920.10522,,,79539020670,79539020670,,,,external-10-79539020670-20240824-144520-1724499920.10522.wav,1724499909.10516,,12401 +"2024-08-24 14:45:20","""79539020670"" <79539020670>",79539020670,12,ext-local,Local/12@from-queue-00000b26;2,PJSIP/12-000012ba,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",12,0,"NO ANSWER",3,,1724499920.10518,,,79539020670,79539020670,,,,external-12-79539020670-20240824-144520-1724499920.10518.wav,1724499909.10516,,12396 +"2024-08-24 14:45:20","""79539020670"" <79539020670>",79539020670,13,ext-local,Local/13@from-queue-00000b27;2,PJSIP/13-000012b9,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",12,0,"NO ANSWER",3,,1724499920.10520,,,79539020670,79539020670,,,,external-13-79539020670-20240824-144520-1724499920.10520.wav,1724499909.10516,,12398 +"2024-08-24 14:45:09","""79539020670"" <79539020670>",79539020670,194,ext-queues,PJSIP/Megafon_3-000012b8,Local/12@from-queue-00000b26;1,Queue,"194,tR,,,600,,,,,",22,22,"NO ANSWER",3,,1724499909.10516,,79217365096,79539020670,79539020670,,,,,1724499909.10516,,12394 +"2024-08-24 14:09:46","""79022833760"" <79022833760>",79022833760,194,ext-queues,PJSIP/Megafon_3-000012b4,Local/10@from-queue-00000b25;1,Queue,"194,tR,,,600,,,,,",73,73,ANSWERED,3,,1724497775.10506,,79217365096,79022833760,79022833760,,,,,1724497775.10506,,12390 +"2024-08-24 14:09:46","""79022833760"" <79022833760>",79022833760,194,ext-queues,PJSIP/Megafon_3-000012b4,Local/13@from-queue-00000b24;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724497775.10506,,79217365096,79022833760,79022833760,,,,,1724497775.10506,,12387 +"2024-08-24 14:09:46","""79022833760"" <79022833760>",79022833760,10,ext-local,Local/10@from-queue-00000b25;2,PJSIP/10-000012b6,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",73,68,ANSWERED,3,,1724497786.10512,,,79022833760,79022833760,,,,external-10-79022833760-20240824-140946-1724497786.10512.wav,1724497775.10506,,12389 +"2024-08-24 14:09:46","""79022833760"" <79022833760>",79022833760,13,ext-local,Local/13@from-queue-00000b24;2,PJSIP/13-000012b7,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724497786.10510,,,79022833760,79022833760,,,,external-13-79022833760-20240824-140946-1724497786.10510.wav,1724497775.10506,,12386 +"2024-08-24 14:09:46","""79022833760"" <79022833760>",79022833760,12,ext-local,Local/12@from-queue-00000b23;2,PJSIP/12-000012b5,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724497786.10508,,,79022833760,79022833760,,,,external-12-79022833760-20240824-140946-1724497786.10508.wav,1724497775.10506,,12384 +"2024-08-24 14:09:35","""79022833760"" <79022833760>",79022833760,194,ext-queues,PJSIP/Megafon_3-000012b4,Local/12@from-queue-00000b23;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724497775.10506,,79217365096,79022833760,79022833760,,,,,1724497775.10506,,12382 +"2024-08-24 14:07:54","""79602005049"" <79602005049>",79602005049,194,ext-queues,PJSIP/rt_769402-000012ae,Local/13@from-queue-00000b22;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724497664.10490,,78162769402,79602005049,79602005049,,,,,1724497664.10490,,12379 +"2024-08-24 14:07:54","""79602005049"" <79602005049>",79602005049,12,ext-local,Local/12@from-queue-00000b21;2,PJSIP/12-000012b3,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",38,33,ANSWERED,3,,1724497674.10501,,,79602005049,79602005049,,,,external-12-79602005049-20240824-140754-1724497674.10501.wav,1724497664.10490,,12376 +"2024-08-24 14:07:54","""79602005049"" <79602005049>",79602005049,13,ext-local,Local/13@from-queue-00000b22;2,PJSIP/13-000012b2,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724497674.10503,,,79602005049,79602005049,,,,external-13-79602005049-20240824-140754-1724497674.10503.wav,1724497664.10490,,12378 +"2024-08-24 14:07:44","""79021479067"" <79021479067>",79021479067,10,ext-local,Local/10@from-queue-00000b20;2,PJSIP/10-000012b1,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",76,68,ANSWERED,3,,1724497664.10496,,,79021479067,79021479067,,,,external-10-79021479067-20240824-140744-1724497664.10496.wav,1724497653.10489,,12370 +"2024-08-24 14:07:44","""79021479067"" <79021479067>",79021479067,194,ext-queues,PJSIP/Megafon_3-000012ad,Local/10@from-queue-00000b20;1,Queue,"194,tR,,,600,,,,,",76,76,ANSWERED,3,,1724497653.10489,,79217365096,79021479067,79021479067,,,,,1724497653.10489,,12371 +"2024-08-24 14:07:44","""79021479067"" <79021479067>",79021479067,194,ext-queues,PJSIP/Megafon_3-000012ad,Local/13@from-queue-00000b1f;1,Queue,"194,tR,,,600,,,,,",7,7,"NO ANSWER",3,,1724497653.10489,,79217365096,79021479067,79021479067,,,,,1724497653.10489,,12368 +"2024-08-24 14:07:44","""79602005049"" <79602005049>",79602005049,194,ext-queues,PJSIP/rt_769402-000012ae,Local/12@from-queue-00000b21;1,Queue,"194,tR,,,600,,,,,",48,48,ANSWERED,3,,1724497664.10490,,78162769402,79602005049,79602005049,,,,,1724497664.10490,,12363 +"2024-08-24 14:07:44","""79021479067"" <79021479067>",79021479067,13,ext-local,Local/13@from-queue-00000b1f;2,PJSIP/13-000012af,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724497664.10494,,,79021479067,79021479067,,,,external-13-79021479067-20240824-140744-1724497664.10494.wav,1724497653.10489,,12367 +"2024-08-24 14:07:44","""79021479067"" <79021479067>",79021479067,12,ext-local,Local/12@from-queue-00000b1e;2,PJSIP/12-000012b0,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724497664.10492,,,79021479067,79021479067,,,,external-12-79021479067-20240824-140744-1724497664.10492.wav,1724497653.10489,,12365 +"2024-08-24 14:07:33","""79021479067"" <79021479067>",79021479067,194,ext-queues,PJSIP/Megafon_3-000012ad,Local/12@from-queue-00000b1e;1,Queue,"194,tR,,,600,,,,,",18,18,"NO ANSWER",3,,1724497653.10489,,79217365096,79021479067,79021479067,,,,,1724497653.10489,,12362 +"2024-08-24 13:54:41",""""" <78162769402>",78162769402,989217055445,from-internal,PJSIP/13-000012ab,PJSIP/rt_769402-000012ac,Dial,"PJSIP/+79217055445@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",34,23,ANSWERED,3,,1724496881.10487,,,13,Регистратура_2,78162769402,,,out-989217055445-13-20240824-135441-1724496881.10487.wav,1724496881.10487,,12360 +"2024-08-24 13:53:22","""Регистратура_1"" <12>",12,22,ext-local,PJSIP/12-000012a9,PJSIP/22-000012aa,Dial,"PJSIP/22/sip:22@192.168.75.11:5078,,HhTtrb(func-apply-sipheaders^s^1)",26,0,ANSWERED,3,,1724496802.10485,,,12,Регистратура_1,,,,internal-22-12-20240824-135322-1724496802.10485.wav,1724496802.10485,,12358 +"2024-08-24 13:52:53","""Регистратура_1"" <12>",12,28,ext-local,PJSIP/12-000012a7,PJSIP/28-000012a8,Dial,"PJSIP/28/sip:28@192.168.75.11:5090,,HhTtrb(func-apply-sipheaders^s^1)",26,0,"NO ANSWER",3,,1724496773.10483,,,12,Регистратура_1,,,,internal-28-12-20240824-135253-1724496773.10483.wav,1724496773.10483,,12356 +"2024-08-24 13:51:37",""""" <78162769402>",78162769402,989524850346,from-internal,PJSIP/13-000012a5,PJSIP/rt_769402-000012a6,Dial,"PJSIP/+79524850346@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",27,18,ANSWERED,3,,1724496697.10481,,,13,Регистратура_2,78162769402,,,out-989524850346-13-20240824-135137-1724496697.10481.wav,1724496697.10481,,12354 +"2024-08-24 13:51:36",""""" <78162769402>",78162769402,989116046445,from-internal,PJSIP/12-000012a3,PJSIP/rt_769402-000012a4,Dial,"PJSIP/+79116046445@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",26,14,ANSWERED,3,,1724496696.10479,,,12,Регистратура_1,78162769402,,,out-989116046445-12-20240824-135136-1724496696.10479.wav,1724496696.10479,,12352 +"2024-08-24 13:49:53",""""" <78162769402>",78162769402,989116387210,from-internal,PJSIP/12-000012a1,PJSIP/rt_769402-000012a2,Dial,"PJSIP/+79116387210@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",68,50,ANSWERED,3,,1724496593.10477,,,12,Регистратура_1,78162769402,,,out-989116387210-12-20240824-134953-1724496593.10477.wav,1724496593.10477,,12350 +"2024-08-24 13:49:24",""""" <78162769402>",78162769402,989602066108,from-internal,PJSIP/13-0000129f,PJSIP/rt_769402-000012a0,Dial,"PJSIP/+79602066108@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",39,16,ANSWERED,3,,1724496564.10475,,,13,Регистратура_2,78162769402,,,out-989602066108-13-20240824-134924-1724496564.10475.wav,1724496564.10475,,12348 +"2024-08-24 13:48:33","""79633338027"" <79633338027>",79633338027,12,ext-local,Local/12@from-queue-00000b1b;2,PJSIP/12-0000129c,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",53,48,ANSWERED,3,,1724496513.10467,,,79633338027,79633338027,,,,external-12-79633338027-20240824-134833-1724496513.10467.wav,1724496502.10465,,12338 +"2024-08-24 13:48:33","""79633338027"" <79633338027>",79633338027,194,ext-queues,PJSIP/Megafon_3-0000129b,Local/10@from-queue-00000b1d;1,Queue,"194,tR,,,600,,,,,",4,4,"NO ANSWER",3,,1724496502.10465,,79217365096,79633338027,79633338027,,,,,1724496502.10465,,12344 +"2024-08-24 13:48:33","""79633338027"" <79633338027>",79633338027,194,ext-queues,PJSIP/Megafon_3-0000129b,Local/13@from-queue-00000b1c;1,Queue,"194,tR,,,600,,,,,",4,4,"NO ANSWER",3,,1724496502.10465,,79217365096,79633338027,79633338027,,,,,1724496502.10465,,12341 +"2024-08-24 13:48:33","""79633338027"" <79633338027>",79633338027,13,ext-local,Local/13@from-queue-00000b1c;2,PJSIP/13-0000129d,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",4,0,"NO ANSWER",3,,1724496513.10469,,,79633338027,79633338027,,,,external-13-79633338027-20240824-134833-1724496513.10469.wav,1724496502.10465,,12340 +"2024-08-24 13:48:33","""79633338027"" <79633338027>",79633338027,10,ext-local,Local/10@from-queue-00000b1d;2,PJSIP/10-0000129e,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",4,0,"NO ANSWER",3,,1724496513.10471,,,79633338027,79633338027,,,,external-10-79633338027-20240824-134833-1724496513.10471.wav,1724496502.10465,,12343 +"2024-08-24 13:48:22","""79633338027"" <79633338027>",79633338027,194,ext-queues,PJSIP/Megafon_3-0000129b,Local/12@from-queue-00000b1b;1,Queue,"194,tR,,,600,,,,,",64,64,ANSWERED,3,,1724496502.10465,,79217365096,79633338027,79633338027,,,,,1724496502.10465,,12336 +"2024-08-24 13:47:06",""""" <78162769402>",78162769402,989602005049,from-internal,PJSIP/13-00001299,PJSIP/rt_769402-0000129a,Dial,"PJSIP/+79602005049@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",35,0,"NO ANSWER",3,,1724496426.10463,,,13,Регистратура_2,78162769402,,,out-989602005049-13-20240824-134707-1724496426.10463.wav,1724496426.10463,,12334 +"2024-08-24 13:44:02","""79524855607"" <79524855607>",79524855607,12,ext-local,Local/12@from-queue-00000b18;2,PJSIP/12-00001298,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",20,13,ANSWERED,3,,1724496242.10455,,,79524855607,79524855607,,,,external-12-79524855607-20240824-134402-1724496242.10455.wav,1724496231.10453,,12324 +"2024-08-24 13:44:02","""79524855607"" <79524855607>",79524855607,194,ext-queues,PJSIP/Megafon_3-00001295,Local/10@from-queue-00000b1a;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724496231.10453,,79217365096,79524855607,79524855607,,,,,1724496231.10453,,12330 +"2024-08-24 13:44:02","""79524855607"" <79524855607>",79524855607,194,ext-queues,PJSIP/Megafon_3-00001295,Local/13@from-queue-00000b19;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724496231.10453,,79217365096,79524855607,79524855607,,,,,1724496231.10453,,12327 +"2024-08-24 13:44:02","""79524855607"" <79524855607>",79524855607,10,ext-local,Local/10@from-queue-00000b1a;2,PJSIP/10-00001296,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724496242.10459,,,79524855607,79524855607,,,,external-10-79524855607-20240824-134402-1724496242.10459.wav,1724496231.10453,,12329 +"2024-08-24 13:44:02","""79524855607"" <79524855607>",79524855607,13,ext-local,Local/13@from-queue-00000b19;2,PJSIP/13-00001297,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724496242.10457,,,79524855607,79524855607,,,,external-13-79524855607-20240824-134402-1724496242.10457.wav,1724496231.10453,,12326 +"2024-08-24 13:43:51","""79524855607"" <79524855607>",79524855607,194,ext-queues,PJSIP/Megafon_3-00001295,Local/12@from-queue-00000b18;1,Queue,"194,tR,,,600,,,,,",31,31,ANSWERED,3,,1724496231.10453,,79217365096,79524855607,79524855607,,,,,1724496231.10453,,12322 +"2024-08-24 13:43:35","""79524855607"" <79524855607>",79524855607,194,ext-queues,PJSIP/Megafon_3-00001294,,Playback,"custom/Privet_23_08, ",9,9,ANSWERED,3,,1724496215.10452,,79217365096,79524855607,79524855607,,,,,1724496215.10452,,12321 +"2024-08-24 13:39:21","""79524882582"" <79524882582>",79524882582,12,ext-local,Local/12@from-queue-00000b15;2,PJSIP/12-00001293,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",50,40,ANSWERED,3,,1724495961.10444,,,79524882582,79524882582,,,,external-12-79524882582-20240824-133921-1724495961.10444.wav,1724495950.10442,,12311 +"2024-08-24 13:39:21","""79524882582"" <79524882582>",79524882582,194,ext-queues,PJSIP/Megafon_3-00001290,Local/10@from-queue-00000b17;1,Queue,"194,tR,,,600,,,,,",10,10,"NO ANSWER",3,,1724495950.10442,,79217365096,79524882582,79524882582,,,,,1724495950.10442,,12317 +"2024-08-24 13:39:21","""79524882582"" <79524882582>",79524882582,194,ext-queues,PJSIP/Megafon_3-00001290,Local/13@from-queue-00000b16;1,Queue,"194,tR,,,600,,,,,",10,10,"NO ANSWER",3,,1724495950.10442,,79217365096,79524882582,79524882582,,,,,1724495950.10442,,12314 +"2024-08-24 13:39:21","""79524882582"" <79524882582>",79524882582,10,ext-local,Local/10@from-queue-00000b17;2,PJSIP/10-00001291,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",10,0,"NO ANSWER",3,,1724495961.10448,,,79524882582,79524882582,,,,external-10-79524882582-20240824-133921-1724495961.10448.wav,1724495950.10442,,12316 +"2024-08-24 13:39:21","""79524882582"" <79524882582>",79524882582,13,ext-local,Local/13@from-queue-00000b16;2,PJSIP/13-00001292,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",10,0,"NO ANSWER",3,,1724495961.10446,,,79524882582,79524882582,,,,external-13-79524882582-20240824-133921-1724495961.10446.wav,1724495950.10442,,12313 +"2024-08-24 13:39:10","""79524882582"" <79524882582>",79524882582,194,ext-queues,PJSIP/Megafon_3-00001290,Local/12@from-queue-00000b15;1,Queue,"194,tR,,,600,,,,,",61,61,ANSWERED,3,,1724495950.10442,,79217365096,79524882582,79524882582,,,,,1724495950.10442,,12309 +"2024-08-24 13:29:59","""79602052318"" <79602052318>",79602052318,194,ext-queues,PJSIP/Megafon_3-0000128c,Local/10@from-queue-00000b14;1,Queue,"194,tR,,,600,,,,,",7,7,"NO ANSWER",3,,1724495389.10432,,79217365096,79602052318,79602052318,,,,,1724495389.10432,,12305 +"2024-08-24 13:29:59","""79602052318"" <79602052318>",79602052318,194,ext-queues,PJSIP/Megafon_3-0000128c,Local/13@from-queue-00000b13;1,Queue,"194,tR,,,600,,,,,",7,7,"NO ANSWER",3,,1724495389.10432,,79217365096,79602052318,79602052318,,,,,1724495389.10432,,12302 +"2024-08-24 13:29:59","""79602052318"" <79602052318>",79602052318,12,ext-local,Local/12@from-queue-00000b12;2,PJSIP/12-0000128d,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",74,67,ANSWERED,3,,1724495399.10434,,,79602052318,79602052318,,,,external-12-79602052318-20240824-132959-1724495399.10434.wav,1724495389.10432,,12299 +"2024-08-24 13:29:59","""79602052318"" <79602052318>",79602052318,13,ext-local,Local/13@from-queue-00000b13;2,PJSIP/13-0000128f,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724495399.10436,,,79602052318,79602052318,,,,external-13-79602052318-20240824-132959-1724495399.10436.wav,1724495389.10432,,12301 +"2024-08-24 13:29:59","""79602052318"" <79602052318>",79602052318,10,ext-local,Local/10@from-queue-00000b14;2,PJSIP/10-0000128e,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724495399.10438,,,79602052318,79602052318,,,,external-10-79602052318-20240824-132959-1724495399.10438.wav,1724495389.10432,,12304 +"2024-08-24 13:29:49","""79602052318"" <79602052318>",79602052318,194,ext-queues,PJSIP/Megafon_3-0000128c,Local/12@from-queue-00000b12;1,Queue,"194,tR,,,600,,,,,",85,85,ANSWERED,3,,1724495389.10432,,79217365096,79602052318,79602052318,,,,,1724495389.10432,,12297 +"2024-08-24 13:18:32","""79011849637"" <79011849637>",79011849637,194,ext-queues,PJSIP/Megafon_3-00001288,Local/10@from-queue-00000b11;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724494701.10422,,79217365096,79011849637,79011849637,,,,,1724494701.10422,,12293 +"2024-08-24 13:18:32","""79011849637"" <79011849637>",79011849637,194,ext-queues,PJSIP/Megafon_3-00001288,Local/13@from-queue-00000b10;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724494701.10422,,79217365096,79011849637,79011849637,,,,,1724494701.10422,,12290 +"2024-08-24 13:18:32","""79011849637"" <79011849637>",79011849637,12,ext-local,Local/12@from-queue-00000b0f;2,PJSIP/12-0000128b,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",91,85,ANSWERED,3,,1724494712.10424,,,79011849637,79011849637,,,,external-12-79011849637-20240824-131832-1724494712.10424.wav,1724494701.10422,,12287 +"2024-08-24 13:18:32","""79011849637"" <79011849637>",79011849637,13,ext-local,Local/13@from-queue-00000b10;2,PJSIP/13-00001289,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724494712.10426,,,79011849637,79011849637,,,,external-13-79011849637-20240824-131832-1724494712.10426.wav,1724494701.10422,,12289 +"2024-08-24 13:18:32","""79011849637"" <79011849637>",79011849637,10,ext-local,Local/10@from-queue-00000b11;2,PJSIP/10-0000128a,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724494712.10428,,,79011849637,79011849637,,,,external-10-79011849637-20240824-131832-1724494712.10428.wav,1724494701.10422,,12292 +"2024-08-24 13:18:21","""79011849637"" <79011849637>",79011849637,194,ext-queues,PJSIP/Megafon_3-00001288,Local/12@from-queue-00000b0f;1,Queue,"194,tR,,,600,,,,,",102,102,ANSWERED,3,,1724494701.10422,,79217365096,79011849637,79011849637,,,,,1724494701.10422,,12285 +"2024-08-24 13:12:20","""79602007771"" <79602007771>",79602007771,12,ext-local,Local/12@from-queue-00000b0c;2,PJSIP/12-00001287,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",35,28,ANSWERED,3,,1724494340.10414,,,79602007771,79602007771,,,,external-12-79602007771-20240824-131220-1724494340.10414.wav,1724494329.10412,,12275 +"2024-08-24 13:12:20","""79602007771"" <79602007771>",79602007771,194,ext-queues,PJSIP/Megafon_3-00001284,Local/10@from-queue-00000b0e;1,Queue,"194,tR,,,600,,,,,",7,7,"NO ANSWER",3,,1724494329.10412,,79217365096,79602007771,79602007771,,,,,1724494329.10412,,12281 +"2024-08-24 13:12:20","""79602007771"" <79602007771>",79602007771,194,ext-queues,PJSIP/Megafon_3-00001284,Local/13@from-queue-00000b0d;1,Queue,"194,tR,,,600,,,,,",7,7,"NO ANSWER",3,,1724494329.10412,,79217365096,79602007771,79602007771,,,,,1724494329.10412,,12278 +"2024-08-24 13:12:20","""79602007771"" <79602007771>",79602007771,10,ext-local,Local/10@from-queue-00000b0e;2,PJSIP/10-00001285,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724494340.10418,,,79602007771,79602007771,,,,external-10-79602007771-20240824-131220-1724494340.10418.wav,1724494329.10412,,12280 +"2024-08-24 13:12:20","""79602007771"" <79602007771>",79602007771,13,ext-local,Local/13@from-queue-00000b0d;2,PJSIP/13-00001286,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724494340.10416,,,79602007771,79602007771,,,,external-13-79602007771-20240824-131220-1724494340.10416.wav,1724494329.10412,,12277 +"2024-08-24 13:12:09","""79602007771"" <79602007771>",79602007771,194,ext-queues,PJSIP/Megafon_3-00001284,Local/12@from-queue-00000b0c;1,Queue,"194,tR,,,600,,,,,",46,46,ANSWERED,3,,1724494329.10412,,79217365096,79602007771,79602007771,,,,,1724494329.10412,,12273 +"2024-08-24 13:09:19",""""" <78162769402>",78162769402,989816020375,from-internal,PJSIP/10-00001282,PJSIP/rt_769402-00001283,Dial,"PJSIP/+79816020375@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",32,0,"NO ANSWER",3,,1724494159.10410,,,10,Регистратура_3,78162769402,,,out-989816020375-10-20240824-130919-1724494159.10410.wav,1724494159.10410,,12271 +"2024-08-24 13:07:03","""79210373536"" <79210373536>",79210373536,12,ext-local,Local/12@from-queue-00000b09;2,PJSIP/12-00001280,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",91,86,ANSWERED,3,,1724494023.10402,,,79210373536,79210373536,,,,external-12-79210373536-20240824-130703-1724494023.10402.wav,1724494012.10400,,12261 +"2024-08-24 13:07:03","""79210373536"" <79210373536>",79210373536,194,ext-queues,PJSIP/Megafon_3-0000127e,Local/10@from-queue-00000b0b;1,Queue,"194,tR,,,600,,,,,",4,4,"NO ANSWER",3,,1724494012.10400,,79217365096,79210373536,79210373536,,,,,1724494012.10400,,12267 +"2024-08-24 13:07:03","""79210373536"" <79210373536>",79210373536,194,ext-queues,PJSIP/Megafon_3-0000127e,Local/13@from-queue-00000b0a;1,Queue,"194,tR,,,600,,,,,",4,4,"NO ANSWER",3,,1724494012.10400,,79217365096,79210373536,79210373536,,,,,1724494012.10400,,12264 +"2024-08-24 13:07:03","""79210373536"" <79210373536>",79210373536,13,ext-local,Local/13@from-queue-00000b0a;2,PJSIP/13-0000127f,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",4,0,"NO ANSWER",3,,1724494023.10404,,,79210373536,79210373536,,,,external-13-79210373536-20240824-130703-1724494023.10404.wav,1724494012.10400,,12263 +"2024-08-24 13:07:03","""79210373536"" <79210373536>",79210373536,10,ext-local,Local/10@from-queue-00000b0b;2,PJSIP/10-00001281,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",4,0,"NO ANSWER",3,,1724494023.10406,,,79210373536,79210373536,,,,external-10-79210373536-20240824-130703-1724494023.10406.wav,1724494012.10400,,12266 +"2024-08-24 13:06:52","""79210373536"" <79210373536>",79210373536,194,ext-queues,PJSIP/Megafon_3-0000127e,Local/12@from-queue-00000b09;1,Queue,"194,tR,,,600,,,,,",102,102,ANSWERED,3,,1724494012.10400,,79217365096,79210373536,79210373536,,,,,1724494012.10400,,12259 +"2024-08-24 13:05:46",""""" <78162769402>",78162769402,989524859920,from-internal,PJSIP/12-0000127c,PJSIP/rt_769402-0000127d,Dial,"PJSIP/+79524859920@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",54,0,"NO ANSWER",3,,1724493946.10398,,,12,Регистратура_1,78162769402,,,out-989524859920-12-20240824-130546-1724493946.10398.wav,1724493946.10398,,12257 +"2024-08-24 13:04:29",""""" <78162769402>",78162769402,989517262142,from-internal,PJSIP/12-0000127a,PJSIP/rt_769402-0000127b,Dial,"PJSIP/+79517262142@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",29,16,ANSWERED,3,,1724493869.10396,,,12,Регистратура_1,78162769402,,,out-989517262142-12-20240824-130429-1724493869.10396.wav,1724493869.10396,,12255 +"2024-08-24 13:04:21","""79062025252"" <79062025252>",79062025252,13,ext-local,Local/13@from-queue-00000b06;2,IAX2/Rahmaninovo-2213,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",176,176,ANSWERED,3,,1724493785.10387,,,79062025252,79062025252,,,,external-13-79062025252-20240824-130305-1724493785.10387.wav,1724493775.10383,,12254 +"2024-08-24 13:04:21",""""" <>",,60,from-internal-xfer,Local/60@from-internal-xfer-00000b08;1,,,,0,0,ANSWERED,3,,1724493842.10393,,,,,,,,,1724493775.10383,,12252 +"2024-08-24 13:04:02","""79062025252"" <79062025252>",79062025252,13,ext-local,Local/13@from-queue-00000b06;2,Local/60@from-internal-xfer-00000b08;1,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",19,19,ANSWERED,3,,1724493785.10387,,,79062025252,79062025252,,,,external-13-79062025252-20240824-130305-1724493785.10387.wav,1724493775.10383,,12253 +"2024-08-24 13:04:02","""79062025252"" <79062025252>",79062025252,60,from-internal-xfer,Local/60@from-internal-xfer-00000b08;2,IAX2/Rahmaninovo-2213,Dial,"IAX2/Rahmaninovo/60,300,Tb(func-apply-sipheaders^s^1,(5))U(sub-send-obroute-ema",19,10,ANSWERED,3,,1724493842.10394,,,13,Регистратура_2,,,,,1724493775.10383,,12249 +"2024-08-24 13:04:02","""Регистратура_2"" <13>",13,s,macro-dial-one,PJSIP/13-00001278,Local/60@from-internal-xfer-00000b08;1,ExecIf,0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=),19,19,ANSWERED,3,,1724493785.10391,,,,,,,,external-13-79062025252-20240824-130305-1724493785.10387.wav,1724493775.10383,,12251 +"2024-08-24 13:03:25","""79021485047"" <79021485047>",79021485047,194,ext-queues,PJSIP/rt_769402-00001279,,Playback,"custom/Privet_23_08, ",6,6,ANSWERED,3,,1724493805.10392,,78162769402,79021485047,79021485047,,,,,1724493805.10392,,12247 +"2024-08-24 13:03:05","""79062025252"" <79062025252>",79062025252,194,ext-queues,PJSIP/rt_769402-00001274,Local/10@from-queue-00000b07;1,Queue,"194,tR,,,600,,,,,",15,15,"NO ANSWER",3,,1724493775.10383,,78162769402,79062025252,79062025252,,,,,1724493775.10383,,12244 +"2024-08-24 13:03:05","""79062025252"" <79062025252>",79062025252,13,ext-local,Local/13@from-queue-00000b06;2,PJSIP/13-00001278,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",56,40,ANSWERED,3,,1724493785.10387,,,79062025252,79062025252,,,,external-13-79062025252-20240824-130305-1724493785.10387.wav,1724493775.10383,,12241 +"2024-08-24 13:03:05","""79062025252"" <79062025252>",79062025252,10,ext-local,Local/10@from-queue-00000b07;2,PJSIP/10-00001277,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",15,0,"NO ANSWER",3,,1724493785.10389,,,79062025252,79062025252,,,,external-10-79062025252-20240824-130305-1724493785.10389.wav,1724493775.10383,,12243 +"2024-08-24 13:03:00",""""" <78162769402>",78162769402,989021485047,from-internal,PJSIP/12-00001275,PJSIP/rt_769402-00001276,Dial,"PJSIP/+79021485047@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",8,0,"NO ANSWER",3,,1724493780.10384,,,12,Регистратура_1,78162769402,,,out-989021485047-12-20240824-130300-1724493780.10384.wav,1724493780.10384,,12238 +"2024-08-24 13:02:55","""79062025252"" <79062025252>",79062025252,194,ext-queues,PJSIP/rt_769402-00001274,Local/13@from-queue-00000b06;1,Queue,"194,tR,,,600,,,,,",262,261,ANSWERED,3,,1724493775.10383,,78162769402,79062025252,79062025252,,,,,1724493775.10383,,12237 +"2024-08-24 13:02:29",""""" <78162769402>",78162769402,989021485047,from-internal,PJSIP/12-00001272,PJSIP/rt_769402-00001273,Dial,"PJSIP/+79021485047@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",19,16,ANSWERED,3,,1724493749.10381,,,12,Регистратура_1,78162769402,,,out-989021485047-12-20240824-130229-1724493749.10381.wav,1724493749.10381,,12235 +"2024-08-24 13:02:20",""""" <78162769402>",78162769402,989633319113,from-internal,PJSIP/10-00001270,PJSIP/rt_769402-00001271,Dial,"PJSIP/+79633319113@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",34,17,ANSWERED,3,,1724493740.10379,,,10,Регистратура_3,78162769402,,,out-989633319113-10-20240824-130220-1724493740.10379.wav,1724493740.10379,,12233 +"2024-08-24 13:01:35",""""" <78162769402>",78162769402,989082914912,from-internal,PJSIP/12-0000126e,PJSIP/rt_769402-0000126f,Dial,"PJSIP/+79082914912@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",38,19,ANSWERED,3,,1724493695.10377,,,12,Регистратура_1,78162769402,,,out-989082914912-12-20240824-130135-1724493695.10377.wav,1724493695.10377,,12231 +"2024-08-24 13:00:27",""""" <78162769402>",78162769402,989524843790,from-internal,PJSIP/12-0000126c,PJSIP/rt_769402-0000126d,Dial,"PJSIP/+79524843790@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",40,21,ANSWERED,3,,1724493627.10375,,,12,Регистратура_1,78162769402,,,out-989524843790-12-20240824-130027-1724493627.10375.wav,1724493627.10375,,12229 +"2024-08-24 12:59:21","""79539047403"" <79539047403>",79539047403,12,ext-local,Local/12@from-queue-00000b03;2,IAX2/Rahmaninovo-645,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",82,82,ANSWERED,3,,1724493524.10367,,,79539047403,79539047403,,,,external-12-79539047403-20240824-125844-1724493524.10367.wav,1724493513.10365,,12228 +"2024-08-24 12:59:21",""""" <>",,60,from-internal-xfer,Local/60@from-internal-xfer-00000b05;1,,,,0,0,ANSWERED,3,,1724493547.10372,,,,,,,,,1724493513.10365,,12226 +"2024-08-24 12:59:07","""79539047403"" <79539047403>",79539047403,12,ext-local,Local/12@from-queue-00000b03;2,Local/60@from-internal-xfer-00000b05;1,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",14,14,ANSWERED,3,,1724493524.10367,,,79539047403,79539047403,,,,external-12-79539047403-20240824-125844-1724493524.10367.wav,1724493513.10365,,12227 +"2024-08-24 12:59:07","""79539047403"" <79539047403>",79539047403,60,from-internal-xfer,Local/60@from-internal-xfer-00000b05;2,IAX2/Rahmaninovo-645,Dial,"IAX2/Rahmaninovo/60,300,Tb(func-apply-sipheaders^s^1,(5))U(sub-send-obroute-ema",14,9,ANSWERED,3,,1724493547.10373,,,12,Регистратура_1,,,,,1724493513.10365,,12223 +"2024-08-24 12:59:07","""Регистратура_1"" <12>",12,s,macro-dial-one,PJSIP/12-0000126a,Local/60@from-internal-xfer-00000b05;1,ExecIf,0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=),14,14,ANSWERED,3,,1724493524.10370,,,,,,,,external-12-79539047403-20240824-125844-1724493524.10367.wav,1724493513.10365,,12224 +"2024-08-24 12:58:44","""79539047403"" <79539047403>",79539047403,194,ext-queues,PJSIP/Megafon_3-00001269,Local/13@from-queue-00000b04;1,Queue,"194,tR,,,600,,,,,",4,4,"NO ANSWER",3,,1724493513.10365,,79217365096,79539047403,79539047403,,,,,1724493513.10365,,12219 +"2024-08-24 12:58:44","""79539047403"" <79539047403>",79539047403,12,ext-local,Local/12@from-queue-00000b03;2,PJSIP/12-0000126a,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",22,18,ANSWERED,3,,1724493524.10367,,,79539047403,79539047403,,,,external-12-79539047403-20240824-125844-1724493524.10367.wav,1724493513.10365,,12216 +"2024-08-24 12:58:44","""79539047403"" <79539047403>",79539047403,13,ext-local,Local/13@from-queue-00000b04;2,PJSIP/13-0000126b,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",4,0,"NO ANSWER",3,,1724493524.10369,,,79539047403,79539047403,,,,external-13-79539047403-20240824-125844-1724493524.10369.wav,1724493513.10365,,12218 +"2024-08-24 12:58:33","""79539047403"" <79539047403>",79539047403,194,ext-queues,PJSIP/Megafon_3-00001269,Local/12@from-queue-00000b03;1,Queue,"194,tR,,,600,,,,,",131,131,ANSWERED,3,,1724493513.10365,,79217365096,79539047403,79539047403,,,,,1724493513.10365,,12214 +"2024-08-24 12:57:29","""79118981869"" <79118981869>",79118981869,194,ext-queues,PJSIP/Megafon_3-00001264,Local/10@from-queue-00000b02;1,Queue,"194,tR,,,600,,,,,",108,108,ANSWERED,3,,1724493438.10356,,79217365096,79118981869,79118981869,,,,,1724493438.10356,,12211 +"2024-08-24 12:57:29","""79118981869"" <79118981869>",79118981869,10,ext-local,Local/10@from-queue-00000b02;2,PJSIP/10-00001267,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",108,86,ANSWERED,3,,1724493449.10362,,,79118981869,79118981869,,,,external-10-79118981869-20240824-125729-1724493449.10362.wav,1724493438.10356,,12210 +"2024-08-24 12:57:29","""79118981869"" <79118981869>",79118981869,12,ext-local,Local/12@from-queue-00000b01;2,PJSIP/12-00001268,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",21,0,"NO ANSWER",3,,1724493449.10360,,,79118981869,79118981869,,,,external-12-79118981869-20240824-125729-1724493449.10360.wav,1724493438.10356,,12208 +"2024-08-24 12:57:20",""""" <78162769402>",78162769402,989633334483,from-internal,PJSIP/13-00001265,PJSIP/rt_769402-00001266,Dial,"PJSIP/+79633334483@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",27,0,"NO ANSWER",3,,1724493440.10357,,,13,Регистратура_2,78162769402,,,out-989633334483-13-20240824-125720-1724493440.10357.wav,1724493440.10357,,12205 +"2024-08-24 12:57:18","""79118981869"" <79118981869>",79118981869,194,ext-queues,PJSIP/Megafon_3-00001264,Local/12@from-queue-00000b01;1,Queue,"194,tR,,,600,,,,,",31,31,"NO ANSWER",3,,1724493438.10356,,79217365096,79118981869,79118981869,,,,,1724493438.10356,,12204 +"2024-08-24 12:56:18",""""" <78162769402>",78162769402,989524895499,from-internal,PJSIP/12-00001262,PJSIP/rt_769402-00001263,Dial,"PJSIP/+79524895499@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",31,15,ANSWERED,3,,1724493378.10354,,,12,Регистратура_1,78162769402,,,out-989524895499-12-20240824-125618-1724493378.10354.wav,1724493378.10354,,12202 +"2024-08-24 12:56:02",""""" <78162769402>",78162769402,989052916127,from-internal,PJSIP/13-00001260,PJSIP/rt_769402-00001261,Dial,"PJSIP/+79052916127@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",38,2,ANSWERED,3,,1724493362.10352,,,13,Регистратура_2,78162769402,,,out-989052916127-13-20240824-125602-1724493362.10352.wav,1724493362.10352,,12200 +"2024-08-24 12:54:45",""""" <78162769402>",78162769402,989062031677,from-internal,PJSIP/13-0000125e,PJSIP/rt_769402-0000125f,Dial,"PJSIP/+79062031677@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",47,25,ANSWERED,3,,1724493285.10350,,,13,Регистратура_2,78162769402,,,out-989062031677-13-20240824-125445-1724493285.10350.wav,1724493285.10350,,12198 +"2024-08-24 12:54:41","""79095662525"" <79095662525>",79095662525,10,ext-local,Local/10@from-queue-00000b00;2,PJSIP/10-0000125c,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",78,68,ANSWERED,3,,1724493281.10347,,,79095662525,79095662525,,,,external-10-79095662525-20240824-125441-1724493281.10347.wav,1724493270.10343,,12193 +"2024-08-24 12:54:41","""79095662525"" <79095662525>",79095662525,194,ext-queues,PJSIP/Megafon_3-0000125b,Local/10@from-queue-00000b00;1,Queue,"194,tR,,,600,,,,,",78,78,ANSWERED,3,,1724493270.10343,,79217365096,79095662525,79095662525,,,,,1724493270.10343,,12194 +"2024-08-24 12:54:41","""79095662525"" <79095662525>",79095662525,13,ext-local,Local/13@from-queue-00000aff;2,PJSIP/13-0000125d,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",1,0,BUSY,3,,1724493281.10345,,,79095662525,79095662525,,,,external-13-79095662525-20240824-125441-1724493281.10345.wav,1724493270.10343,,12191 +"2024-08-24 12:54:30","""79095662525"" <79095662525>",79095662525,194,ext-queues,PJSIP/Megafon_3-0000125b,Local/13@from-queue-00000aff;1,Queue,"194,tR,,,600,,,,,",12,12,BUSY,3,,1724493270.10343,,79217365096,79095662525,79095662525,,,,,1724493270.10343,,12189 +"2024-08-24 12:53:33",""""" <78162769402>",78162769402,989992800452,from-internal,PJSIP/13-00001259,PJSIP/rt_769402-0000125a,Dial,"PJSIP/+79992800452@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",40,20,ANSWERED,3,,1724493213.10341,,,13,Регистратура_2,78162769402,,,out-989992800452-13-20240824-125333-1724493213.10341.wav,1724493213.10341,,12187 +"2024-08-24 12:52:38","""79211687951"" <79211687951>",79211687951,13,ext-local,Local/13@from-queue-00000afc;2,PJSIP/16-00001258,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",34,34,ANSWERED,3,,1724493080.10330,,,79211687951,79211687951,,,,external-13-79211687951-20240824-125120-1724493080.10330.wav,1724493070.10326,,12186 +"2024-08-24 12:52:36","""Каб. 4"" <16>",16,16,from-internal-xfer,Local/16@from-internal-xfer-00000afe;1,,,,1,0,ANSWERED,3,,1724493153.10338,,,,,,,,,1724493070.10326,,12184 +"2024-08-24 12:52:33","""79211687951"" <79211687951>",79211687951,13,ext-local,Local/13@from-queue-00000afc;2,Local/16@from-internal-xfer-00000afe;1,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",4,4,ANSWERED,3,,1724493080.10330,,,79211687951,79211687951,,,,external-13-79211687951-20240824-125120-1724493080.10330.wav,1724493070.10326,,12185 +"2024-08-24 12:52:33","""79211687951"" <79211687951>",79211687951,16,ext-local,Local/16@from-internal-xfer-00000afe;2,PJSIP/16-00001258,Dial,"PJSIP/16/sip:16@192.168.75.11:5066,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",4,0,ANSWERED,3,,1724493153.10339,,,13,Регистратура_2,,,,external-13-79211687951-20240824-125120-1724493080.10330.wav,1724493070.10326,,12181 +"2024-08-24 12:52:33","""Регистратура_2"" <13>",13,s,macro-dial-one,PJSIP/13-00001253,Local/16@from-internal-xfer-00000afe;1,ExecIf,0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=),3,3,ANSWERED,3,,1724493080.10331,,,,,,,,external-13-79211687951-20240824-125120-1724493080.10330.wav,1724493070.10326,,12182 +"2024-08-24 12:52:04","""79217311746"" <79217311746>",79217311746,12,ext-local,Local/12@from-queue-00000afd;2,PJSIP/12-00001257,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",163,149,ANSWERED,3,,1724493124.10336,,,79217311746,79217311746,,,,external-12-79217311746-20240824-125204-1724493124.10336.wav,1724493113.10332,,12178 +"2024-08-24 12:52:03",""""" <78162769402>",78162769402,989524843790,from-internal,PJSIP/10-00001255,PJSIP/rt_769402-00001256,Dial,"PJSIP/+79524843790@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",16,0,"NO ANSWER",3,,1724493123.10333,,,10,Регистратура_3,78162769402,,,out-989524843790-10-20240824-125203-1724493123.10333.wav,1724493123.10333,,12175 +"2024-08-24 12:51:53","""79217311746"" <79217311746>",79217311746,194,ext-queues,PJSIP/Megafon_3-00001254,Local/12@from-queue-00000afd;1,Queue,"194,tR,,,600,,,,,",174,174,ANSWERED,3,,1724493113.10332,,79217365096,79217311746,79217311746,,,,,1724493113.10332,,12174 +"2024-08-24 12:51:20","""79211687951"" <79211687951>",79211687951,13,ext-local,Local/13@from-queue-00000afc;2,PJSIP/13-00001253,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",72,57,ANSWERED,3,,1724493080.10330,,,79211687951,79211687951,,,,external-13-79211687951-20240824-125120-1724493080.10330.wav,1724493070.10326,,12172 +"2024-08-24 12:51:10","""79211687951"" <79211687951>",79211687951,194,ext-queues,PJSIP/Megafon_3-00001250,Local/13@from-queue-00000afc;1,Queue,"194,tR,,,600,,,,,",122,122,ANSWERED,3,,1724493070.10326,,79217365096,79211687951,79211687951,,,,,1724493070.10326,,12168 +"2024-08-24 12:51:10",""""" <78162769402>",78162769402,989524895499,from-internal,PJSIP/10-00001251,PJSIP/rt_769402-00001252,Dial,"PJSIP/+79524895499@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",27,3,ANSWERED,3,,1724493070.10327,,,10,Регистратура_3,78162769402,,,out-989524895499-10-20240824-125110-1724493070.10327.wav,1724493070.10327,,12169 +"2024-08-24 12:51:05",""""" <78162769402>",78162769402,989210220141,from-internal,PJSIP/12-0000124e,PJSIP/rt_769402-0000124f,Dial,"PJSIP/+79210220141@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",30,0,"NO ANSWER",3,,1724493065.10324,,,12,Регистратура_1,78162769402,,,out-989210220141-12-20240824-125105-1724493065.10324.wav,1724493065.10324,,12166 +"2024-08-24 12:49:43",""""" <78162769402>",78162769402,989531602285,from-internal,PJSIP/12-0000124c,PJSIP/rt_769402-0000124d,Dial,"PJSIP/+79531602285@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",7,0,"NO ANSWER",3,,1724492983.10322,,,12,Регистратура_1,78162769402,,,out-989531602285-12-20240824-124943-1724492983.10322.wav,1724492983.10322,,12164 +"2024-08-24 12:49:23",""""" <78162769402>",78162769402,989531602285,from-internal,PJSIP/12-0000124a,PJSIP/rt_769402-0000124b,Dial,"PJSIP/+79531602285@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",6,0,"NO ANSWER",3,,1724492963.10320,,,12,Регистратура_1,78162769402,,,out-989531602285-12-20240824-124923-1724492963.10320.wav,1724492963.10320,,12162 +"2024-08-24 12:48:45","""79539035274"" <79539035274>",79539035274,194,ext-queues,PJSIP/Megafon_3-00001246,Local/10@from-queue-00000afb;1,Queue,"194,tR,,,600,,,,,",63,63,ANSWERED,3,,1724492914.10310,,79217365096,79539035274,79539035274,,,,,1724492914.10310,,12158 +"2024-08-24 12:48:45","""79539035274"" <79539035274>",79539035274,194,ext-queues,PJSIP/Megafon_3-00001246,Local/13@from-queue-00000afa;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724492914.10310,,79217365096,79539035274,79539035274,,,,,1724492914.10310,,12155 +"2024-08-24 12:48:45","""79539035274"" <79539035274>",79539035274,10,ext-local,Local/10@from-queue-00000afb;2,PJSIP/10-00001249,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",63,57,ANSWERED,3,,1724492925.10316,,,79539035274,79539035274,,,,external-10-79539035274-20240824-124845-1724492925.10316.wav,1724492914.10310,,12157 +"2024-08-24 12:48:45","""79539035274"" <79539035274>",79539035274,12,ext-local,Local/12@from-queue-00000af9;2,PJSIP/12-00001248,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724492925.10312,,,79539035274,79539035274,,,,external-12-79539035274-20240824-124845-1724492925.10312.wav,1724492914.10310,,12152 +"2024-08-24 12:48:45","""79539035274"" <79539035274>",79539035274,13,ext-local,Local/13@from-queue-00000afa;2,PJSIP/13-00001247,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724492925.10314,,,79539035274,79539035274,,,,external-13-79539035274-20240824-124845-1724492925.10314.wav,1724492914.10310,,12154 +"2024-08-24 12:48:34","""79539035274"" <79539035274>",79539035274,194,ext-queues,PJSIP/Megafon_3-00001246,Local/12@from-queue-00000af9;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724492914.10310,,79217365096,79539035274,79539035274,,,,,1724492914.10310,,12150 +"2024-08-24 12:46:53","""79602082828"" <79602082828>",79602082828,194,ext-queues,PJSIP/Megafon_3-00001242,Local/10@from-queue-00000af8;1,Queue,"194,tR,,,600,,,,,",54,54,ANSWERED,3,,1724492802.10300,,79217365096,79602082828,79602082828,,,,,1724492802.10300,,12146 +"2024-08-24 12:46:53","""79602082828"" <79602082828>",79602082828,194,ext-queues,PJSIP/Megafon_3-00001242,Local/13@from-queue-00000af7;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724492802.10300,,79217365096,79602082828,79602082828,,,,,1724492802.10300,,12143 +"2024-08-24 12:46:53","""79602082828"" <79602082828>",79602082828,10,ext-local,Local/10@from-queue-00000af8;2,PJSIP/10-00001243,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",54,48,ANSWERED,3,,1724492813.10306,,,79602082828,79602082828,,,,external-10-79602082828-20240824-124653-1724492813.10306.wav,1724492802.10300,,12145 +"2024-08-24 12:46:53","""79602082828"" <79602082828>",79602082828,13,ext-local,Local/13@from-queue-00000af7;2,PJSIP/13-00001244,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724492813.10304,,,79602082828,79602082828,,,,external-13-79602082828-20240824-124653-1724492813.10304.wav,1724492802.10300,,12142 +"2024-08-24 12:46:53","""79602082828"" <79602082828>",79602082828,12,ext-local,Local/12@from-queue-00000af6;2,PJSIP/12-00001245,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724492813.10302,,,79602082828,79602082828,,,,external-12-79602082828-20240824-124653-1724492813.10302.wav,1724492802.10300,,12140 +"2024-08-24 12:46:42","""79602082828"" <79602082828>",79602082828,194,ext-queues,PJSIP/Megafon_3-00001242,Local/12@from-queue-00000af6;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724492802.10300,,79217365096,79602082828,79602082828,,,,,1724492802.10300,,12138 +"2024-08-24 12:44:51","""79539057033"" <79539057033>",79539057033,10,ext-local,Local/10@from-queue-00000af5;2,PJSIP/10-00001241,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",22,16,ANSWERED,3,,1724492691.10297,,,79539057033,79539057033,,,,external-10-79539057033-20240824-124451-1724492691.10297.wav,1724492673.10284,,12134 +"2024-08-24 12:44:51","""79539057033"" <79539057033>",79539057033,194,ext-queues,PJSIP/Megafon_3-0000123c,Local/10@from-queue-00000af5;1,Queue,"194,tR,,,600,,,,,",22,22,ANSWERED,3,,1724492673.10284,,79217365096,79539057033,79539057033,,,,,1724492673.10284,,12135 +"2024-08-24 12:44:51","""79539057033"" <79539057033>",79539057033,13,ext-local,Local/13@from-queue-00000af4;2,PJSIP/13-00001240,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724492691.10295,,,79539057033,79539057033,,,,external-13-79539057033-20240824-124451-1724492691.10295.wav,1724492673.10284,,12132 +"2024-08-24 12:44:40","""79082921828"" <79082921828>",79082921828,194,ext-queues,PJSIP/Megafon_3-0000123b,Local/10@from-queue-00000af3;1,Queue,"194,tR,,,600,,,,,",8,8,"NO ANSWER",3,,1724492669.10283,,79217365096,79082921828,79082921828,,,,,1724492669.10283,,12127 +"2024-08-24 12:44:40","""79082921828"" <79082921828>",79082921828,194,ext-queues,PJSIP/Megafon_3-0000123b,Local/13@from-queue-00000af2;1,Queue,"194,tR,,,600,,,,,",8,8,"NO ANSWER",3,,1724492669.10283,,79217365096,79082921828,79082921828,,,,,1724492669.10283,,12124 +"2024-08-24 12:44:40","""79082921828"" <79082921828>",79082921828,12,ext-local,Local/12@from-queue-00000af1;2,PJSIP/12-0000123f,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",18,10,ANSWERED,3,,1724492680.10286,,,79082921828,79082921828,,,,external-12-79082921828-20240824-124440-1724492680.10286.wav,1724492669.10283,,12121 +"2024-08-24 12:44:40","""79082921828"" <79082921828>",79082921828,13,ext-local,Local/13@from-queue-00000af2;2,PJSIP/13-0000123d,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",8,0,"NO ANSWER",3,,1724492680.10288,,,79082921828,79082921828,,,,external-13-79082921828-20240824-124440-1724492680.10288.wav,1724492669.10283,,12123 +"2024-08-24 12:44:40","""79082921828"" <79082921828>",79082921828,10,ext-local,Local/10@from-queue-00000af3;2,PJSIP/10-0000123e,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",8,0,"NO ANSWER",3,,1724492680.10290,,,79082921828,79082921828,,,,external-10-79082921828-20240824-124440-1724492680.10290.wav,1724492669.10283,,12126 +"2024-08-24 12:44:33","""79539057033"" <79539057033>",79539057033,194,ext-queues,PJSIP/Megafon_3-0000123c,Local/13@from-queue-00000af4;1,Queue,"194,tR,,,600,,,,,",23,23,"NO ANSWER",3,,1724492673.10284,,79217365096,79539057033,79539057033,,,,,1724492673.10284,,12119 +"2024-08-24 12:44:29","""79082921828"" <79082921828>",79082921828,194,ext-queues,PJSIP/Megafon_3-0000123b,Local/12@from-queue-00000af1;1,Queue,"194,tR,,,600,,,,,",29,29,ANSWERED,3,,1724492669.10283,,79217365096,79082921828,79082921828,,,,,1724492669.10283,,12118 +"2024-08-24 12:43:07",""""" <78162769402>",78162769402,989602033888,from-internal,PJSIP/13-00001239,PJSIP/rt_769402-0000123a,Dial,"PJSIP/+79602033888@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",39,25,ANSWERED,3,,1724492587.10281,,,13,Регистратура_2,78162769402,,,out-989602033888-13-20240824-124307-1724492587.10281.wav,1724492587.10281,,12116 +"2024-08-24 12:42:03",""""" <78162769402>",78162769402,989524854499,from-internal,PJSIP/10-00001237,PJSIP/rt_769402-00001238,Dial,"PJSIP/+79524854499@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",41,19,ANSWERED,3,,1724492523.10279,,,10,Регистратура_3,78162769402,,,out-989524854499-10-20240824-124203-1724492523.10279.wav,1724492523.10279,,12114 +"2024-08-24 12:41:58",""""" <78162769402>",78162769402,989602022888,from-internal,PJSIP/13-00001235,PJSIP/rt_769402-00001236,Dial,"PJSIP/+79602022888@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",22,19,ANSWERED,3,,1724492518.10277,,,13,Регистратура_2,78162769402,,,out-989602022888-13-20240824-124158-1724492518.10277.wav,1724492518.10277,,12112 +"2024-08-24 12:39:41","""79082954721"" <79082954721>",79082954721,194,ext-queues,PJSIP/Megafon_3-00001231,Local/10@from-queue-00000af0;1,Queue,"194,tR,,,600,,,,,",72,72,ANSWERED,3,,1724492370.10267,,79217365096,79082954721,79082954721,,,,,1724492370.10267,,12108 +"2024-08-24 12:39:41","""79082954721"" <79082954721>",79082954721,194,ext-queues,PJSIP/Megafon_3-00001231,Local/13@from-queue-00000aef;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724492370.10267,,79217365096,79082954721,79082954721,,,,,1724492370.10267,,12105 +"2024-08-24 12:39:41","""79082954721"" <79082954721>",79082954721,10,ext-local,Local/10@from-queue-00000af0;2,PJSIP/10-00001234,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",72,67,ANSWERED,3,,1724492381.10273,,,79082954721,79082954721,,,,external-10-79082954721-20240824-123941-1724492381.10273.wav,1724492370.10267,,12107 +"2024-08-24 12:39:41","""79082954721"" <79082954721>",79082954721,12,ext-local,Local/12@from-queue-00000aee;2,PJSIP/12-00001233,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724492381.10269,,,79082954721,79082954721,,,,external-12-79082954721-20240824-123941-1724492381.10269.wav,1724492370.10267,,12102 +"2024-08-24 12:39:41","""79082954721"" <79082954721>",79082954721,13,ext-local,Local/13@from-queue-00000aef;2,PJSIP/13-00001232,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724492381.10271,,,79082954721,79082954721,,,,external-13-79082954721-20240824-123941-1724492381.10271.wav,1724492370.10267,,12104 +"2024-08-24 12:39:30","""79082954721"" <79082954721>",79082954721,194,ext-queues,PJSIP/Megafon_3-00001231,Local/12@from-queue-00000aee;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724492370.10267,,79217365096,79082954721,79082954721,,,,,1724492370.10267,,12100 +"2024-08-24 12:38:54",""""" <78162769402>",78162769402,989082940424,from-internal,PJSIP/10-0000122f,PJSIP/rt_769402-00001230,Dial,"PJSIP/+79082940424@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",24,17,ANSWERED,3,,1724492334.10265,,,10,Регистратура_3,78162769402,,,out-989082940424-10-20240824-123854-1724492334.10265.wav,1724492334.10265,,12098 +"2024-08-24 12:37:52",""""" <78162769402>",78162769402,989082940424,from-internal,PJSIP/10-0000122d,PJSIP/rt_769402-0000122e,Dial,"PJSIP/+79082940424@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",32,13,ANSWERED,3,,1724492272.10263,,,10,Регистратура_3,78162769402,,,out-989082940424-10-20240824-123752-1724492272.10263.wav,1724492272.10263,,12096 +"2024-08-24 12:37:32","""79517257934"" <79517257934>",79517257934,13,ext-local,Local/13@from-queue-00000aec;2,PJSIP/13-0000122b,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",22,14,ANSWERED,3,,1724492252.10257,,,79517257934,79517257934,,,,external-13-79517257934-20240824-123732-1724492252.10257.wav,1724492241.10253,,12087 +"2024-08-24 12:37:32","""79517257934"" <79517257934>",79517257934,194,ext-queues,PJSIP/Megafon_3-00001229,Local/10@from-queue-00000aed;1,Queue,"194,tR,,,600,,,,,",2,2,FAILED,3,,1724492241.10253,,79217365096,79517257934,79517257934,,,,,1724492241.10253,,12091 +"2024-08-24 12:37:32","""79517257934"" <79517257934>",79517257934,194,ext-queues,PJSIP/Megafon_3-00001229,Local/13@from-queue-00000aec;1,Queue,"194,tR,,,600,,,,,",22,22,ANSWERED,3,,1724492241.10253,,79217365096,79517257934,79517257934,,,,,1724492241.10253,,12088 +"2024-08-24 12:37:32","""79517257934"" <79517257934>",79517257934,12,ext-local,Local/12@from-queue-00000aeb;2,PJSIP/12-0000122c,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724492252.10255,,,79517257934,79517257934,,,,external-12-79517257934-20240824-123732-1724492252.10255.wav,1724492241.10253,,12085 +"2024-08-24 12:37:32","""79517257934"" <79517257934>",79517257934,10,ext-local,Local/10@from-queue-00000aed;2,PJSIP/10-0000122a,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",2,0,"NO ANSWER",3,,1724492252.10259,,,79517257934,79517257934,,,,external-10-79517257934-20240824-123732-1724492252.10259.wav,1724492241.10253,,12090 +"2024-08-24 12:37:21","""79517257934"" <79517257934>",79517257934,194,ext-queues,PJSIP/Megafon_3-00001229,Local/12@from-queue-00000aeb;1,Queue,"194,tR,,,600,,,,,",18,18,"NO ANSWER",3,,1724492241.10253,,79217365096,79517257934,79517257934,,,,,1724492241.10253,,12083 +"2024-08-24 12:36:33",""""" <78162769402>",78162769402,989116479161,from-internal,PJSIP/10-00001227,PJSIP/rt_769402-00001228,Dial,"PJSIP/+79116479161@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",39,19,ANSWERED,3,,1724492193.10251,,,10,Регистратура_3,78162769402,,,out-989116479161-10-20240824-123633-1724492193.10251.wav,1724492193.10251,,12081 +"2024-08-24 12:33:59",""""" <78162769402>",78162769402,989021479067,from-internal,PJSIP/10-00001225,PJSIP/rt_769402-00001226,Dial,"PJSIP/+79021479067@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",29,19,ANSWERED,3,,1724492039.10249,,,10,Регистратура_3,78162769402,,,out-989021479067-10-20240824-123359-1724492039.10249.wav,1724492039.10249,,12079 +"2024-08-24 12:33:08",""""" <78162769402>",78162769402,989524856902,from-internal,PJSIP/10-00001223,PJSIP/rt_769402-00001224,Dial,"PJSIP/+79524856902@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",34,18,ANSWERED,3,,1724491988.10247,,,10,Регистратура_3,78162769402,,,out-989524856902-10-20240824-123308-1724491988.10247.wav,1724491988.10247,,12077 +"2024-08-24 12:30:59",""""" <78162769402>",78162769402,989116350250,from-internal,PJSIP/10-00001221,PJSIP/rt_769402-00001222,Dial,"PJSIP/+79116350250@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",26,15,ANSWERED,3,,1724491859.10245,,,10,Регистратура_3,78162769402,,,out-989116350250-10-20240824-123059-1724491859.10245.wav,1724491859.10245,,12075 +"2024-08-24 12:30:51",""""" <78162769402>",78162769402,989216955624,from-internal,PJSIP/13-0000121f,PJSIP/rt_769402-00001220,Dial,"PJSIP/+79216955624@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",52,31,ANSWERED,3,,1724491851.10243,,,13,Регистратура_2,78162769402,,,out-989216955624-13-20240824-123051-1724491851.10243.wav,1724491851.10243,,12073 +"2024-08-24 12:30:19",""""" <78162769402>",78162769402,989116140358,from-internal,PJSIP/10-0000121d,PJSIP/rt_769402-0000121e,Dial,"PJSIP/+79116140358@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",24,15,ANSWERED,3,,1724491819.10241,,,10,Регистратура_3,78162769402,,,out-989116140358-10-20240824-123019-1724491819.10241.wav,1724491819.10241,,12071 +"2024-08-24 12:29:49","""79095652583"" <79095652583>",79095652583,194,ext-queues,PJSIP/rt_769402-0000121a,Local/13@from-queue-00000aea;1,Queue,"194,tR,,,600,,,,,",32,32,ANSWERED,3,,1724491779.10234,,78162769402,79095652583,79095652583,,,,,1724491779.10234,,12068 +"2024-08-24 12:29:49","""79095652583"" <79095652583>",79095652583,13,ext-local,Local/13@from-queue-00000aea;2,PJSIP/13-0000121c,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",32,28,ANSWERED,3,,1724491789.10238,,,79095652583,79095652583,,,,external-13-79095652583-20240824-122949-1724491789.10238.wav,1724491779.10234,,12067 +"2024-08-24 12:29:49","""79095652583"" <79095652583>",79095652583,12,ext-local,Local/12@from-queue-00000ae9;2,PJSIP/12-0000121b,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",4,0,"NO ANSWER",3,,1724491789.10236,,,79095652583,79095652583,,,,external-12-79095652583-20240824-122949-1724491789.10236.wav,1724491779.10234,,12065 +"2024-08-24 12:29:39","""79095652583"" <79095652583>",79095652583,194,ext-queues,PJSIP/rt_769402-0000121a,Local/12@from-queue-00000ae9;1,Queue,"194,tR,,,600,,,,,",14,14,"NO ANSWER",3,,1724491779.10234,,78162769402,79095652583,79095652583,,,,,1724491779.10234,,12063 +"2024-08-24 12:29:30","""79082920116"" <79082920116>",79082920116,10,ext-local,Local/10@from-queue-00000ae8;2,PJSIP/10-00001219,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",27,21,ANSWERED,3,,1724491770.10230,,,79082920116,79082920116,,,,external-10-79082920116-20240824-122930-1724491770.10230.wav,1724491759.10224,,12058 +"2024-08-24 12:29:30","""79082920116"" <79082920116>",79082920116,194,ext-queues,PJSIP/Megafon_3-00001216,Local/10@from-queue-00000ae8;1,Queue,"194,tR,,,600,,,,,",27,27,ANSWERED,3,,1724491759.10224,,79217365096,79082920116,79082920116,,,,,1724491759.10224,,12059 +"2024-08-24 12:29:30","""79082920116"" <79082920116>",79082920116,194,ext-queues,PJSIP/Megafon_3-00001216,Local/13@from-queue-00000ae7;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724491759.10224,,79217365096,79082920116,79082920116,,,,,1724491759.10224,,12056 +"2024-08-24 12:29:30","""79082920116"" <79082920116>",79082920116,13,ext-local,Local/13@from-queue-00000ae7;2,PJSIP/13-00001217,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724491770.10228,,,79082920116,79082920116,,,,external-13-79082920116-20240824-122930-1724491770.10228.wav,1724491759.10224,,12055 +"2024-08-24 12:29:30","""79082920116"" <79082920116>",79082920116,12,ext-local,Local/12@from-queue-00000ae6;2,PJSIP/12-00001218,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724491770.10226,,,79082920116,79082920116,,,,external-12-79082920116-20240824-122930-1724491770.10226.wav,1724491759.10224,,12053 +"2024-08-24 12:29:19","""79082920116"" <79082920116>",79082920116,194,ext-queues,PJSIP/Megafon_3-00001216,Local/12@from-queue-00000ae6;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724491759.10224,,79217365096,79082920116,79082920116,,,,,1724491759.10224,,12051 +"2024-08-24 12:28:58",""""" <78162769402>",78162769402,989082926739,from-internal,PJSIP/10-00001214,PJSIP/rt_769402-00001215,Dial,"PJSIP/+79082926739@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",31,15,ANSWERED,3,,1724491738.10222,,,10,Регистратура_3,78162769402,,,out-989082926739-10-20240824-122858-1724491738.10222.wav,1724491738.10222,,12049 +"2024-08-24 12:27:27","""79116380137"" <79116380137>",79116380137,194,ext-queues,PJSIP/Megafon_3-0000120f,Local/13@from-queue-00000ae5;1,Queue,"194,tR,,,600,,,,,",27,27,ANSWERED,3,,1724491636.10213,,79217365096,79116380137,79116380137,,,,,1724491636.10213,,12046 +"2024-08-24 12:27:27","""79116380137"" <79116380137>",79116380137,13,ext-local,Local/13@from-queue-00000ae5;2,PJSIP/13-00001212,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",27,18,ANSWERED,3,,1724491647.10219,,,79116380137,79116380137,,,,external-13-79116380137-20240824-122727-1724491647.10219.wav,1724491636.10213,,12045 +"2024-08-24 12:27:27","""79116380137"" <79116380137>",79116380137,12,ext-local,Local/12@from-queue-00000ae4;2,PJSIP/12-00001213,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",8,0,"NO ANSWER",3,,1724491647.10217,,,79116380137,79116380137,,,,external-12-79116380137-20240824-122727-1724491647.10217.wav,1724491636.10213,,12043 +"2024-08-24 12:27:16",""""" <78162769402>",78162769402,989633690099,from-internal,PJSIP/10-00001210,PJSIP/rt_769402-00001211,Dial,"PJSIP/+79633690099@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",44,14,ANSWERED,3,,1724491636.10214,,,10,Регистратура_3,78162769402,,,out-989633690099-10-20240824-122716-1724491636.10214.wav,1724491636.10214,,12040 +"2024-08-24 12:27:16","""79116380137"" <79116380137>",79116380137,194,ext-queues,PJSIP/Megafon_3-0000120f,Local/12@from-queue-00000ae4;1,Queue,"194,tR,,,600,,,,,",19,19,"NO ANSWER",3,,1724491636.10213,,79217365096,79116380137,79116380137,,,,,1724491636.10213,,12039 +"2024-08-24 12:26:30",""""" <78162769402>",78162769402,989216972243,from-internal,PJSIP/10-0000120d,PJSIP/rt_769402-0000120e,Dial,"PJSIP/+79216972243@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",32,13,ANSWERED,3,,1724491590.10211,,,10,Регистратура_3,78162769402,,,out-989216972243-10-20240824-122630-1724491590.10211.wav,1724491590.10211,,12037 +"2024-08-24 12:25:40",""""" <78162769402>",78162769402,989095652583,from-internal,PJSIP/10-0000120b,PJSIP/rt_769402-0000120c,Dial,"PJSIP/+79095652583@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",38,1,ANSWERED,3,,1724491540.10209,,,10,Регистратура_3,78162769402,,,out-989095652583-10-20240824-122540-1724491540.10209.wav,1724491540.10209,,12035 +"2024-08-24 12:25:04","""Регистратура_1"" <12>",12,16,ext-local,PJSIP/12-00001209,PJSIP/16-0000120a,Dial,"PJSIP/16/sip:16@192.168.75.11:5066,,HhTtrb(func-apply-sipheaders^s^1)",15,6,ANSWERED,3,,1724491504.10207,,,12,Регистратура_1,,,,internal-16-12-20240824-122504-1724491504.10207.wav,1724491504.10207,,12033 +"2024-08-24 12:24:42",""""" <78162769402>",78162769402,989021493814,from-internal,PJSIP/10-00001207,PJSIP/rt_769402-00001208,Dial,"PJSIP/+79021493814@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",29,13,ANSWERED,3,,1724491482.10205,,,10,Регистратура_3,78162769402,,,out-989021493814-10-20240824-122442-1724491482.10205.wav,1724491482.10205,,12031 +"2024-08-24 12:23:58",""""" <78162769402>",78162769402,989116204487,from-internal,PJSIP/10-00001205,PJSIP/rt_769402-00001206,Dial,"PJSIP/+79116204487@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",30,13,ANSWERED,3,,1724491438.10203,,,10,Регистратура_3,78162769402,,,out-989116204487-10-20240824-122358-1724491438.10203.wav,1724491438.10203,,12029 +"2024-08-24 12:21:56","""Регистратура_1"" <12>",12,22,ext-local,PJSIP/12-00001203,PJSIP/22-00001204,Dial,"PJSIP/22/sip:22@192.168.75.11:5078,,HhTtrb(func-apply-sipheaders^s^1)",9,5,ANSWERED,3,,1724491316.10201,,,12,Регистратура_1,,,,internal-22-12-20240824-122156-1724491316.10201.wav,1724491316.10201,,12027 +"2024-08-24 12:19:40",""""" <78162769402>",78162769402,989052908796,from-internal,PJSIP/10-00001201,PJSIP/rt_769402-00001202,Dial,"PJSIP/+79052908796@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",54,44,ANSWERED,3,,1724491180.10199,,,10,Регистратура_3,78162769402,,,out-989052908796-10-20240824-121940-1724491180.10199.wav,1724491180.10199,,12025 +"2024-08-24 12:18:35","""79116067952"" <79116067952>",79116067952,194,ext-queues,PJSIP/rt_769402-00001200,,Playback,"custom/Privet_23_08, ",6,6,ANSWERED,3,,1724491115.10198,,78162769402,79116067952,79116067952,,,,,1724491115.10198,,12024 +"2024-08-24 12:16:03",""""" <78162769402>",78162769402,989116075196,from-internal,PJSIP/10-000011fe,PJSIP/rt_769402-000011ff,Dial,"PJSIP/+79116075196@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",43,21,ANSWERED,3,,1724490963.10196,,,10,Регистратура_3,78162769402,,,out-989116075196-10-20240824-121603-1724490963.10196.wav,1724490963.10196,,12022 +"2024-08-24 12:14:45",""""" <78162769402>",78162769402,989116067952,from-internal,PJSIP/10-000011fc,PJSIP/rt_769402-000011fd,Dial,"PJSIP/+79116067952@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",12,7,ANSWERED,3,,1724490885.10194,,,10,Регистратура_3,78162769402,,,out-989116067952-10-20240824-121445-1724490885.10194.wav,1724490885.10194,,12020 +"2024-08-24 12:13:43",""""" <78162769402>",78162769402,989062021999,from-internal,PJSIP/10-000011fa,PJSIP/rt_769402-000011fb,Dial,"PJSIP/+79062021999@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",42,20,ANSWERED,3,,1724490823.10192,,,10,Регистратура_3,78162769402,,,out-989062021999-10-20240824-121343-1724490823.10192.wav,1724490823.10192,,12018 +"2024-08-24 12:12:51",""""" <78162769402>",78162769402,989217317441,from-internal,PJSIP/10-000011f8,PJSIP/rt_769402-000011f9,Dial,"PJSIP/+79217317441@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",34,6,ANSWERED,3,,1724490771.10190,,,10,Регистратура_3,78162769402,,,out-989217317441-10-20240824-121251-1724490771.10190.wav,1724490771.10190,,12016 +"2024-08-24 12:11:45",""""" <78162769402>",78162769402,989116300338,from-internal,PJSIP/10-000011f6,PJSIP/rt_769402-000011f7,Dial,"PJSIP/+79116300338@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",53,25,ANSWERED,3,,1724490705.10188,,,10,Регистратура_3,78162769402,,,out-989116300338-10-20240824-121145-1724490705.10188.wav,1724490705.10188,,12014 +"2024-08-24 12:11:15",""""" <78162769402>",78162769402,989116381957,from-internal,PJSIP/10-000011f4,PJSIP/rt_769402-000011f5,Dial,"PJSIP/+79116381957@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",8,4,ANSWERED,3,,1724490675.10186,,,10,Регистратура_3,78162769402,,,out-989116381957-10-20240824-121115-1724490675.10186.wav,1724490675.10186,,12012 +"2024-08-24 12:09:51","""79116141092"" <79116141092>",79116141092,10,ext-local,Local/10@from-queue-00000ae3;2,PJSIP/10-000011f1,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",25,20,ANSWERED,3,,1724490591.10182,,,79116141092,79116141092,,,,external-10-79116141092-20240824-120951-1724490591.10182.wav,1724490581.10176,,12007 +"2024-08-24 12:09:51","""79116141092"" <79116141092>",79116141092,194,ext-queues,PJSIP/Megafon_3-000011f0,Local/10@from-queue-00000ae3;1,Queue,"194,tR,,,600,,,,,",25,25,ANSWERED,3,,1724490581.10176,,79217365096,79116141092,79116141092,,,,,1724490581.10176,,12008 +"2024-08-24 12:09:51","""79116141092"" <79116141092>",79116141092,194,ext-queues,PJSIP/Megafon_3-000011f0,Local/13@from-queue-00000ae2;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724490581.10176,,79217365096,79116141092,79116141092,,,,,1724490581.10176,,12005 +"2024-08-24 12:09:51","""79116141092"" <79116141092>",79116141092,13,ext-local,Local/13@from-queue-00000ae2;2,PJSIP/13-000011f3,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724490591.10180,,,79116141092,79116141092,,,,external-13-79116141092-20240824-120952-1724490591.10180.wav,1724490581.10176,,12004 +"2024-08-24 12:09:51","""79116141092"" <79116141092>",79116141092,12,ext-local,Local/12@from-queue-00000ae1;2,PJSIP/12-000011f2,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724490591.10178,,,79116141092,79116141092,,,,external-12-79116141092-20240824-120951-1724490591.10178.wav,1724490581.10176,,12002 +"2024-08-24 12:09:41","""79116141092"" <79116141092>",79116141092,194,ext-queues,PJSIP/Megafon_3-000011f0,Local/12@from-queue-00000ae1;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724490581.10176,,79217365096,79116141092,79116141092,,,,,1724490581.10176,,12000 +"2024-08-24 12:03:21","""79082954452"" <79082954452>",79082954452,194,ext-queues,PJSIP/Megafon_3-000011ec,Local/10@from-queue-00000ae0;1,Queue,"194,tR,,,600,,,,,",19,19,"NO ANSWER",3,,1724490190.10166,,79217365096,79082954452,79082954452,,,,,1724490190.10166,,11996 +"2024-08-24 12:03:21","""79082954452"" <79082954452>",79082954452,194,ext-queues,PJSIP/Megafon_3-000011ec,Local/13@from-queue-00000adf;1,Queue,"194,tR,,,600,,,,,",19,19,"NO ANSWER",3,,1724490190.10166,,79217365096,79082954452,79082954452,,,,,1724490190.10166,,11993 +"2024-08-24 12:03:21","""79082954452"" <79082954452>",79082954452,12,ext-local,Local/12@from-queue-00000ade;2,PJSIP/12-000011ee,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",187,168,ANSWERED,3,,1724490201.10168,,,79082954452,79082954452,,,,external-12-79082954452-20240824-120321-1724490201.10168.wav,1724490190.10166,,11990 +"2024-08-24 12:03:21","""79082954452"" <79082954452>",79082954452,10,ext-local,Local/10@from-queue-00000ae0;2,PJSIP/10-000011ed,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",19,0,"NO ANSWER",3,,1724490201.10172,,,79082954452,79082954452,,,,external-10-79082954452-20240824-120321-1724490201.10172.wav,1724490190.10166,,11995 +"2024-08-24 12:03:21","""79082954452"" <79082954452>",79082954452,13,ext-local,Local/13@from-queue-00000adf;2,PJSIP/13-000011ef,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",19,0,"NO ANSWER",3,,1724490201.10170,,,79082954452,79082954452,,,,external-13-79082954452-20240824-120321-1724490201.10170.wav,1724490190.10166,,11992 +"2024-08-24 12:03:10","""79082954452"" <79082954452>",79082954452,194,ext-queues,PJSIP/Megafon_3-000011ec,Local/12@from-queue-00000ade;1,Queue,"194,tR,,,600,,,,,",198,198,ANSWERED,3,,1724490190.10166,,79217365096,79082954452,79082954452,,,,,1724490190.10166,,11988 +"2024-08-24 11:59:01","""79116021080"" <79116021080>",79116021080,13,ext-local,Local/13@from-queue-00000adc;2,PJSIP/13-000011eb,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",123,116,ANSWERED,3,,1724489941.10160,,,79116021080,79116021080,,,,external-13-79116021080-20240824-115901-1724489941.10160.wav,1724489931.10156,,11980 +"2024-08-24 11:59:01","""79116021080"" <79116021080>",79116021080,194,ext-queues,PJSIP/rt_769402-000011e8,Local/10@from-queue-00000add;1,Queue,"194,tR,,,600,,,,,",7,7,"NO ANSWER",3,,1724489931.10156,,78162769402,79116021080,79116021080,,,,,1724489931.10156,,11984 +"2024-08-24 11:59:01","""79116021080"" <79116021080>",79116021080,194,ext-queues,PJSIP/rt_769402-000011e8,Local/13@from-queue-00000adc;1,Queue,"194,tR,,,600,,,,,",123,123,ANSWERED,3,,1724489931.10156,,78162769402,79116021080,79116021080,,,,,1724489931.10156,,11981 +"2024-08-24 11:59:01","""79116021080"" <79116021080>",79116021080,12,ext-local,Local/12@from-queue-00000adb;2,PJSIP/12-000011ea,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724489941.10158,,,79116021080,79116021080,,,,external-12-79116021080-20240824-115901-1724489941.10158.wav,1724489931.10156,,11978 +"2024-08-24 11:59:01","""79116021080"" <79116021080>",79116021080,10,ext-local,Local/10@from-queue-00000add;2,PJSIP/10-000011e9,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724489941.10162,,,79116021080,79116021080,,,,external-10-79116021080-20240824-115901-1724489941.10162.wav,1724489931.10156,,11983 +"2024-08-24 11:58:51","""79116021080"" <79116021080>",79116021080,194,ext-queues,PJSIP/rt_769402-000011e8,Local/12@from-queue-00000adb;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724489931.10156,,78162769402,79116021080,79116021080,,,,,1724489931.10156,,11976 +"2024-08-24 11:56:25",""""" <78162769402>",78162769402,989116067952,from-internal,PJSIP/10-000011e6,PJSIP/rt_769402-000011e7,Dial,"PJSIP/+79116067952@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",9,4,ANSWERED,3,,1724489785.10154,,,10,Регистратура_3,78162769402,,,out-989116067952-10-20240824-115625-1724489785.10154.wav,1724489785.10154,,11974 +"2024-08-24 11:56:10","""79539042899"" <79539042899>",79539042899,194,ext-queues,PJSIP/Megafon_3-000011e3,Local/13@from-queue-00000ada;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724489759.10147,,79217365096,79539042899,79539042899,,,,,1724489759.10147,,11971 +"2024-08-24 11:56:09","""79539042899"" <79539042899>",79539042899,12,ext-local,Local/12@from-queue-00000ad9;2,PJSIP/12-000011e5,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",29,23,ANSWERED,3,,1724489769.10149,,,79539042899,79539042899,,,,external-12-79539042899-20240824-115610-1724489769.10149.wav,1724489759.10147,,11968 +"2024-08-24 11:56:09","""79539042899"" <79539042899>",79539042899,13,ext-local,Local/13@from-queue-00000ada;2,PJSIP/13-000011e4,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724489769.10151,,,79539042899,79539042899,,,,external-13-79539042899-20240824-115610-1724489769.10151.wav,1724489759.10147,,11970 +"2024-08-24 11:55:59","""79539042899"" <79539042899>",79539042899,194,ext-queues,PJSIP/Megafon_3-000011e3,Local/12@from-queue-00000ad9;1,Queue,"194,tR,,,600,,,,,",40,40,ANSWERED,3,,1724489759.10147,,79217365096,79539042899,79539042899,,,,,1724489759.10147,,11966 +"2024-08-24 11:55:43",""""" <78162769402>",78162769402,989506831264,from-internal,PJSIP/10-000011e1,PJSIP/rt_769402-000011e2,Dial,"PJSIP/+79506831264@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",30,18,ANSWERED,3,,1724489743.10145,,,10,Регистратура_3,78162769402,,,out-989506831264-10-20240824-115543-1724489743.10145.wav,1724489743.10145,,11964 +"2024-08-24 11:54:39",""""" <78162769402>",78162769402,989116452295,from-internal,PJSIP/10-000011df,PJSIP/rt_769402-000011e0,Dial,"PJSIP/+79116452295@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",51,21,ANSWERED,3,,1724489679.10143,,,10,Регистратура_3,78162769402,,,out-989116452295-10-20240824-115439-1724489679.10143.wav,1724489679.10143,,11962 +"2024-08-24 11:53:48",""""" <78162769402>",78162769402,989062021999,from-internal,PJSIP/10-000011dd,PJSIP/rt_769402-000011de,Dial,"PJSIP/+79062021999@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",39,2,ANSWERED,3,,1724489628.10141,,,10,Регистратура_3,78162769402,,,out-989062021999-10-20240824-115348-1724489628.10141.wav,1724489628.10141,,11960 +"2024-08-24 11:52:52",""""" <78162769402>",78162769402,989506879467,from-internal,PJSIP/10-000011db,PJSIP/rt_769402-000011dc,Dial,"PJSIP/+79506879467@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",33,18,ANSWERED,3,,1724489572.10139,,,10,Регистратура_3,78162769402,,,out-989506879467-10-20240824-115252-1724489572.10139.wav,1724489572.10139,,11958 +"2024-08-24 11:52:01","""79217366381"" <79217366381>",79217366381,194,ext-queues,PJSIP/rt_769402-000011d7,Local/13@from-queue-00000ad8;1,Queue,"194,tR,,,600,,,,,",12,12,"NO ANSWER",3,,1724489511.10131,,78162769402,79217366381,79217366381,,,,,1724489511.10131,,11955 +"2024-08-24 11:52:01","""79217366381"" <79217366381>",79217366381,12,ext-local,Local/12@from-queue-00000ad7;2,PJSIP/12-000011d9,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",39,26,ANSWERED,3,,1724489521.10134,,,79217366381,79217366381,,,,external-12-79217366381-20240824-115201-1724489521.10134.wav,1724489511.10131,,11952 +"2024-08-24 11:52:01","""79217366381"" <79217366381>",79217366381,13,ext-local,Local/13@from-queue-00000ad8;2,PJSIP/13-000011da,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",12,0,"NO ANSWER",3,,1724489521.10136,,,79217366381,79217366381,,,,external-13-79217366381-20240824-115201-1724489521.10136.wav,1724489511.10131,,11954 +"2024-08-24 11:51:57","""79116300338"" <79116300338>",79116300338,194,ext-queues,PJSIP/rt_769402-000011d8,,Queue,"194,tR,,,600,,,,,",16,16,ANSWERED,3,,1724489517.10132,,78162769402,79116300338,79116300338,,,,,1724489517.10132,,11950 +"2024-08-24 11:51:51","""79217366381"" <79217366381>",79217366381,194,ext-queues,PJSIP/rt_769402-000011d7,Local/12@from-queue-00000ad7;1,Queue,"194,tR,,,600,,,,,",49,48,ANSWERED,3,,1724489511.10131,,78162769402,79217366381,79217366381,,,,,1724489511.10131,,11949 +"2024-08-24 11:51:50",""""" <78162769402>",78162769402,989217317441,from-internal,PJSIP/10-000011d5,PJSIP/rt_769402-000011d6,Dial,"PJSIP/+79217317441@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",34,6,ANSWERED,3,,1724489510.10129,,,10,Регистратура_3,78162769402,,,out-989217317441-10-20240824-115150-1724489510.10129.wav,1724489510.10129,,11947 +"2024-08-24 11:50:46",""""" <78162769402>",78162769402,989116300338,from-internal,PJSIP/10-000011d3,PJSIP/rt_769402-000011d4,Dial,"PJSIP/+79116300338@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",51,0,"NO ANSWER",3,,1724489446.10127,,,10,Регистратура_3,78162769402,,,out-989116300338-10-20240824-115046-1724489446.10127.wav,1724489446.10127,,11945 +"2024-08-24 11:50:00",""""" <78162769402>",78162769402,989217366381,from-internal,PJSIP/10-000011d1,PJSIP/rt_769402-000011d2,Dial,"PJSIP/+79217366381@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",36,5,ANSWERED,3,,1724489400.10125,,,10,Регистратура_3,78162769402,,,out-989217366381-10-20240824-115000-1724489400.10125.wav,1724489400.10125,,11943 +"2024-08-24 11:49:23",""""" <78162769402>",78162769402,989116381957,from-internal,PJSIP/10-000011cf,PJSIP/rt_769402-000011d0,Dial,"PJSIP/+79116381957@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",26,3,ANSWERED,3,,1724489363.10123,,,10,Регистратура_3,78162769402,,,out-989116381957-10-20240824-114923-1724489363.10123.wav,1724489363.10123,,11941 +"2024-08-24 11:48:32","""79020393742"" <79020393742>",79020393742,10,ext-local,Local/10@from-queue-00000ad6;2,PJSIP/10-000011cd,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",32,27,ANSWERED,3,,1724489312.10119,,,79020393742,79020393742,,,,external-10-79020393742-20240824-114832-1724489312.10119.wav,1724489302.10113,,11936 +"2024-08-24 11:48:32","""79020393742"" <79020393742>",79020393742,194,ext-queues,PJSIP/rt_769402-000011cb,Local/10@from-queue-00000ad6;1,Queue,"194,tR,,,600,,,,,",32,32,ANSWERED,3,,1724489302.10113,,78162769402,79020393742,79020393742,,,,,1724489302.10113,,11937 +"2024-08-24 11:48:32","""79020393742"" <79020393742>",79020393742,194,ext-queues,PJSIP/rt_769402-000011cb,Local/13@from-queue-00000ad5;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724489302.10113,,78162769402,79020393742,79020393742,,,,,1724489302.10113,,11934 +"2024-08-24 11:48:32","""79020393742"" <79020393742>",79020393742,12,ext-local,Local/12@from-queue-00000ad4;2,PJSIP/12-000011cc,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724489312.10115,,,79020393742,79020393742,,,,external-12-79020393742-20240824-114832-1724489312.10115.wav,1724489302.10113,,11931 +"2024-08-24 11:48:32","""79020393742"" <79020393742>",79020393742,13,ext-local,Local/13@from-queue-00000ad5;2,PJSIP/13-000011ce,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724489312.10117,,,79020393742,79020393742,,,,external-13-79020393742-20240824-114832-1724489312.10117.wav,1724489302.10113,,11933 +"2024-08-24 11:48:22","""79020393742"" <79020393742>",79020393742,194,ext-queues,PJSIP/rt_769402-000011cb,Local/12@from-queue-00000ad4;1,Queue,"194,tR,,,600,,,,,",15,14,"NO ANSWER",3,,1724489302.10113,,78162769402,79020393742,79020393742,,,,,1724489302.10113,,11929 +"2024-08-24 11:47:53",""""" <78162769402>",78162769402,989539084114,from-internal,PJSIP/10-000011c9,PJSIP/rt_769402-000011ca,Dial,"PJSIP/+79539084114@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",23,14,ANSWERED,3,,1724489273.10111,,,10,Регистратура_3,78162769402,,,out-989539084114-10-20240824-114753-1724489273.10111.wav,1724489273.10111,,11927 +"2024-08-24 11:47:07",""""" <78162769402>",78162769402,989212057134,from-internal,PJSIP/10-000011c7,PJSIP/rt_769402-000011c8,Dial,"PJSIP/+79212057134@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",32,6,ANSWERED,3,,1724489227.10109,,,10,Регистратура_3,78162769402,,,out-989212057134-10-20240824-114707-1724489227.10109.wav,1724489227.10109,,11925 +"2024-08-24 11:45:57",""""" <78162769402>",78162769402,989633693690,from-internal,PJSIP/10-000011c5,PJSIP/rt_769402-000011c6,Dial,"PJSIP/+79633693690@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",42,18,ANSWERED,3,,1724489157.10107,,,10,Регистратура_3,78162769402,,,out-989633693690-10-20240824-114557-1724489157.10107.wav,1724489157.10107,,11923 +"2024-08-24 11:42:29",""""" <78162769402>",78162769402,989524804347,from-internal,PJSIP/10-000011c3,PJSIP/rt_769402-000011c4,Dial,"PJSIP/+79524804347@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",59,49,ANSWERED,3,,1724488949.10105,,,10,Регистратура_3,78162769402,,,out-989524804347-10-20240824-114229-1724488949.10105.wav,1724488949.10105,,11921 +"2024-08-24 11:38:43","""Регистратура"" <62>",62,10,ext-local,IAX2/Secret_life-1893,PJSIP/10-000011c2,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrb(func-apply-sipheaders^s^1)",158,153,ANSWERED,3,,1724488723.10103,,,62,Регистратура,,,,internal-10-62-20240824-113843-1724488723.10103.wav,1724488723.10103,,11919 +"2024-08-24 11:37:00","""79524804347"" <79524804347>",79524804347,194,ext-queues,PJSIP/Megafon_3-000011be,Local/10@from-queue-00000ad3;1,Queue,"194,tR,,,600,,,,,",41,41,ANSWERED,3,,1724488609.10093,,79217365096,79524804347,79524804347,,,,,1724488609.10093,,11915 +"2024-08-24 11:37:00","""79524804347"" <79524804347>",79524804347,194,ext-queues,PJSIP/Megafon_3-000011be,Local/13@from-queue-00000ad2;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724488609.10093,,79217365096,79524804347,79524804347,,,,,1724488609.10093,,11912 +"2024-08-24 11:37:00","""79524804347"" <79524804347>",79524804347,10,ext-local,Local/10@from-queue-00000ad3;2,PJSIP/10-000011c1,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",41,36,ANSWERED,3,,1724488620.10099,,,79524804347,79524804347,,,,external-10-79524804347-20240824-113700-1724488620.10099.wav,1724488609.10093,,11914 +"2024-08-24 11:37:00","""79524804347"" <79524804347>",79524804347,13,ext-local,Local/13@from-queue-00000ad2;2,PJSIP/13-000011bf,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724488620.10097,,,79524804347,79524804347,,,,external-13-79524804347-20240824-113700-1724488620.10097.wav,1724488609.10093,,11911 +"2024-08-24 11:37:00","""79524804347"" <79524804347>",79524804347,12,ext-local,Local/12@from-queue-00000ad1;2,PJSIP/12-000011c0,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724488620.10095,,,79524804347,79524804347,,,,external-12-79524804347-20240824-113700-1724488620.10095.wav,1724488609.10093,,11909 +"2024-08-24 11:36:49","""79524804347"" <79524804347>",79524804347,194,ext-queues,PJSIP/Megafon_3-000011be,Local/12@from-queue-00000ad1;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724488609.10093,,79217365096,79524804347,79524804347,,,,,1724488609.10093,,11907 +"2024-08-24 11:27:30","""79021491501"" <79021491501>",79021491501,194,ext-queues,PJSIP/Megafon_3-000011ba,Local/10@from-queue-00000ad0;1,Queue,"194,tR,,,600,,,,,",26,26,ANSWERED,3,,1724488040.10083,,79217365096,79021491501,79021491501,,,,,1724488040.10083,,11903 +"2024-08-24 11:27:30","""79021491501"" <79021491501>",79021491501,194,ext-queues,PJSIP/Megafon_3-000011ba,Local/13@from-queue-00000acf;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724488040.10083,,79217365096,79021491501,79021491501,,,,,1724488040.10083,,11900 +"2024-08-24 11:27:30","""79021491501"" <79021491501>",79021491501,10,ext-local,Local/10@from-queue-00000ad0;2,PJSIP/10-000011bc,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",26,10,ANSWERED,3,,1724488050.10089,,,79021491501,79021491501,,,,external-10-79021491501-20240824-112730-1724488050.10089.wav,1724488040.10083,,11902 +"2024-08-24 11:27:30","""79021491501"" <79021491501>",79021491501,13,ext-local,Local/13@from-queue-00000acf;2,PJSIP/13-000011bb,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",16,0,"NO ANSWER",3,,1724488050.10087,,,79021491501,79021491501,,,,external-13-79021491501-20240824-112730-1724488050.10087.wav,1724488040.10083,,11899 +"2024-08-24 11:27:30","""79021491501"" <79021491501>",79021491501,12,ext-local,Local/12@from-queue-00000ace;2,PJSIP/12-000011bd,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",16,0,"NO ANSWER",3,,1724488050.10085,,,79021491501,79021491501,,,,external-12-79021491501-20240824-112730-1724488050.10085.wav,1724488040.10083,,11897 +"2024-08-24 11:27:20","""79021491501"" <79021491501>",79021491501,194,ext-queues,PJSIP/Megafon_3-000011ba,Local/12@from-queue-00000ace;1,Queue,"194,tR,,,600,,,,,",27,27,"NO ANSWER",3,,1724488040.10083,,79217365096,79021491501,79021491501,,,,,1724488040.10083,,11895 +"2024-08-24 11:26:08","""79210218538"" <79210218538>",79210218538,194,ext-queues,PJSIP/Megafon_3-000011b6,Local/10@from-queue-00000acd;1,Queue,"194,tR,,,600,,,,,",77,77,ANSWERED,3,,1724487957.10073,,79217365096,79210218538,79210218538,,,,,1724487957.10073,,11891 +"2024-08-24 11:26:08","""79210218538"" <79210218538>",79210218538,194,ext-queues,PJSIP/Megafon_3-000011b6,Local/13@from-queue-00000acc;1,Queue,"194,tR,,,600,,,,,",12,12,"NO ANSWER",3,,1724487957.10073,,79217365096,79210218538,79210218538,,,,,1724487957.10073,,11888 +"2024-08-24 11:26:08","""79210218538"" <79210218538>",79210218538,10,ext-local,Local/10@from-queue-00000acd;2,PJSIP/10-000011b8,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",77,64,ANSWERED,3,,1724487968.10079,,,79210218538,79210218538,,,,external-10-79210218538-20240824-112608-1724487968.10079.wav,1724487957.10073,,11890 +"2024-08-24 11:26:08","""79210218538"" <79210218538>",79210218538,13,ext-local,Local/13@from-queue-00000acc;2,PJSIP/13-000011b7,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",12,0,"NO ANSWER",3,,1724487968.10077,,,79210218538,79210218538,,,,external-13-79210218538-20240824-112608-1724487968.10077.wav,1724487957.10073,,11887 +"2024-08-24 11:26:08","""79210218538"" <79210218538>",79210218538,12,ext-local,Local/12@from-queue-00000acb;2,PJSIP/12-000011b9,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",12,0,"NO ANSWER",3,,1724487968.10075,,,79210218538,79210218538,,,,external-12-79210218538-20240824-112608-1724487968.10075.wav,1724487957.10073,,11885 +"2024-08-24 11:25:57","""79210218538"" <79210218538>",79210218538,194,ext-queues,PJSIP/Megafon_3-000011b6,Local/12@from-queue-00000acb;1,Queue,"194,tR,,,600,,,,,",23,23,"NO ANSWER",3,,1724487957.10073,,79217365096,79210218538,79210218538,,,,,1724487957.10073,,11883 +"2024-08-24 11:22:10","""79116094645"" <79116094645>",79116094645,194,ext-queues,PJSIP/Megafon_3-000011b2,Local/10@from-queue-00000aca;1,Queue,"194,tR,,,600,,,,,",94,94,ANSWERED,3,,1724487719.10063,,79217365096,79116094645,79116094645,,,,,1724487719.10063,,11879 +"2024-08-24 11:22:10","""79116094645"" <79116094645>",79116094645,194,ext-queues,PJSIP/Megafon_3-000011b2,Local/13@from-queue-00000ac9;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724487719.10063,,79217365096,79116094645,79116094645,,,,,1724487719.10063,,11876 +"2024-08-24 11:22:10","""79116094645"" <79116094645>",79116094645,10,ext-local,Local/10@from-queue-00000aca;2,PJSIP/10-000011b5,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",94,88,ANSWERED,3,,1724487730.10069,,,79116094645,79116094645,,,,external-10-79116094645-20240824-112210-1724487730.10069.wav,1724487719.10063,,11878 +"2024-08-24 11:22:10","""79116094645"" <79116094645>",79116094645,13,ext-local,Local/13@from-queue-00000ac9;2,PJSIP/13-000011b3,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724487730.10067,,,79116094645,79116094645,,,,external-13-79116094645-20240824-112210-1724487730.10067.wav,1724487719.10063,,11875 +"2024-08-24 11:22:10","""79116094645"" <79116094645>",79116094645,12,ext-local,Local/12@from-queue-00000ac8;2,PJSIP/12-000011b4,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724487730.10065,,,79116094645,79116094645,,,,external-12-79116094645-20240824-112210-1724487730.10065.wav,1724487719.10063,,11873 +"2024-08-24 11:21:59","""79116094645"" <79116094645>",79116094645,194,ext-queues,PJSIP/Megafon_3-000011b2,Local/12@from-queue-00000ac8;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724487719.10063,,79217365096,79116094645,79116094645,,,,,1724487719.10063,,11871 +"2024-08-24 11:21:38","""Регистратура_3"" <10>",10,28,ext-local,PJSIP/10-000011b0,PJSIP/28-000011b1,Dial,"PJSIP/28/sip:28@192.168.75.11:5090,,HhTtrb(func-apply-sipheaders^s^1)",19,10,ANSWERED,3,,1724487698.10061,,,10,Регистратура_3,,,,internal-28-10-20240824-112138-1724487698.10061.wav,1724487698.10061,,11869 +"2024-08-24 11:21:05","""Регистратура_3"" <10>",10,22,ext-local,PJSIP/10-000011ae,PJSIP/22-000011af,Dial,"PJSIP/22/sip:22@192.168.75.11:5078,,HhTtrb(func-apply-sipheaders^s^1)",25,20,ANSWERED,3,,1724487665.10059,,,10,Регистратура_3,,,,internal-22-10-20240824-112105-1724487665.10059.wav,1724487665.10059,,11867 +"2024-08-24 11:20:22","""Регистратура_3"" <10>",10,16,ext-local,PJSIP/10-000011ac,PJSIP/16-000011ad,Dial,"PJSIP/16/sip:16@192.168.75.11:5066,,HhTtrb(func-apply-sipheaders^s^1)",39,0,"NO ANSWER",3,,1724487622.10057,,,10,Регистратура_3,,,,internal-16-10-20240824-112022-1724487622.10057.wav,1724487622.10057,,11865 +"2024-08-24 11:11:51","""79218417646"" <79218417646>",79218417646,10,ext-local,Local/10@from-queue-00000ac7;2,PJSIP/10-000011aa,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",14,8,ANSWERED,3,,1724487111.10053,,,79218417646,79218417646,,,,external-10-79218417646-20240824-111151-1724487111.10053.wav,1724487085.10047,,11860 +"2024-08-24 11:11:51","""79218417646"" <79218417646>",79218417646,194,ext-queues,PJSIP/Megafon_2-000011a8,Local/10@from-queue-00000ac7;1,Queue,"194,tR,,,600,,,,,",14,14,ANSWERED,3,,1724487085.10047,,79217365596,79218417646,79218417646,,,,,1724487085.10047,,11861 +"2024-08-24 11:11:51","""79218417646"" <79218417646>",79218417646,194,ext-queues,PJSIP/Megafon_2-000011a8,Local/13@from-queue-00000ac6;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724487085.10047,,79217365596,79218417646,79218417646,,,,,1724487085.10047,,11858 +"2024-08-24 11:11:51","""79218417646"" <79218417646>",79218417646,12,ext-local,Local/12@from-queue-00000ac5;2,PJSIP/12-000011a9,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724487111.10049,,,79218417646,79218417646,,,,external-12-79218417646-20240824-111151-1724487111.10049.wav,1724487085.10047,,11855 +"2024-08-24 11:11:51","""79218417646"" <79218417646>",79218417646,13,ext-local,Local/13@from-queue-00000ac6;2,PJSIP/13-000011ab,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724487111.10051,,,79218417646,79218417646,,,,external-13-79218417646-20240824-111151-1724487111.10051.wav,1724487085.10047,,11857 +"2024-08-24 11:11:25","""79218417646"" <79218417646>",79218417646,194,ext-queues,PJSIP/Megafon_2-000011a8,Local/12@from-queue-00000ac5;1,Queue,"194,tR,,,600,,,,,",31,30,"NO ANSWER",3,,1724487085.10047,,79217365596,79218417646,79218417646,,,,,1724487085.10047,,11853 +"2024-08-24 10:53:58","""79110417177"" <79110417177>",79110417177,194,ext-queues,PJSIP/Megafon_3-000011a4,Local/10@from-queue-00000ac4;1,Queue,"194,tR,,,600,,,,,",7,7,"NO ANSWER",3,,1724486027.10037,,79217365096,79110417177,79110417177,,,,,1724486027.10037,,11849 +"2024-08-24 10:53:58","""79110417177"" <79110417177>",79110417177,194,ext-queues,PJSIP/Megafon_3-000011a4,Local/13@from-queue-00000ac3;1,Queue,"194,tR,,,600,,,,,",61,61,ANSWERED,3,,1724486027.10037,,79217365096,79110417177,79110417177,,,,,1724486027.10037,,11846 +"2024-08-24 10:53:58","""79110417177"" <79110417177>",79110417177,13,ext-local,Local/13@from-queue-00000ac3;2,PJSIP/13-000011a7,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",61,54,ANSWERED,3,,1724486038.10041,,,79110417177,79110417177,,,,external-13-79110417177-20240824-105358-1724486038.10041.wav,1724486027.10037,,11845 +"2024-08-24 10:53:58","""79110417177"" <79110417177>",79110417177,12,ext-local,Local/12@from-queue-00000ac2;2,PJSIP/12-000011a5,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724486038.10039,,,79110417177,79110417177,,,,external-12-79110417177-20240824-105358-1724486038.10039.wav,1724486027.10037,,11843 +"2024-08-24 10:53:58","""79110417177"" <79110417177>",79110417177,10,ext-local,Local/10@from-queue-00000ac4;2,PJSIP/10-000011a6,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724486038.10043,,,79110417177,79110417177,,,,external-10-79110417177-20240824-105358-1724486038.10043.wav,1724486027.10037,,11848 +"2024-08-24 10:53:47","""79110417177"" <79110417177>",79110417177,194,ext-queues,PJSIP/Megafon_3-000011a4,Local/12@from-queue-00000ac2;1,Queue,"194,tR,,,600,,,,,",18,18,"NO ANSWER",3,,1724486027.10037,,79217365096,79110417177,79110417177,,,,,1724486027.10037,,11841 +"2024-08-24 10:47:26","""79506823270"" <79506823270>",79506823270,10,ext-local,Local/10@from-queue-00000ac1;2,PJSIP/10-000011a2,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",77,71,ANSWERED,3,,1724485646.10033,,,79506823270,79506823270,,,,external-10-79506823270-20240824-104726-1724485646.10033.wav,1724485635.10027,,11836 +"2024-08-24 10:47:26","""79506823270"" <79506823270>",79506823270,194,ext-queues,PJSIP/Megafon_3-000011a0,Local/10@from-queue-00000ac1;1,Queue,"194,tR,,,600,,,,,",77,77,ANSWERED,3,,1724485635.10027,,79217365096,79506823270,79506823270,,,,,1724485635.10027,,11837 +"2024-08-24 10:47:26","""79506823270"" <79506823270>",79506823270,194,ext-queues,PJSIP/Megafon_3-000011a0,Local/13@from-queue-00000ac0;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724485635.10027,,79217365096,79506823270,79506823270,,,,,1724485635.10027,,11834 +"2024-08-24 10:47:26","""79506823270"" <79506823270>",79506823270,13,ext-local,Local/13@from-queue-00000ac0;2,PJSIP/13-000011a3,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724485646.10031,,,79506823270,79506823270,,,,external-13-79506823270-20240824-104726-1724485646.10031.wav,1724485635.10027,,11833 +"2024-08-24 10:47:26","""79506823270"" <79506823270>",79506823270,12,ext-local,Local/12@from-queue-00000abf;2,PJSIP/12-000011a1,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724485646.10029,,,79506823270,79506823270,,,,external-12-79506823270-20240824-104726-1724485646.10029.wav,1724485635.10027,,11831 +"2024-08-24 10:47:15","""79506823270"" <79506823270>",79506823270,194,ext-queues,PJSIP/Megafon_3-000011a0,Local/12@from-queue-00000abf;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724485635.10027,,79217365096,79506823270,79506823270,,,,,1724485635.10027,,11829 +"2024-08-24 10:46:34","""79210277193"" <79210277193>",79210277193,194,ext-queues,PJSIP/Megafon_3-0000119c,Local/10@from-queue-00000abe;1,Queue,"194,tR,,,600,,,,,",29,29,"NO ANSWER",3,,1724485584.10017,,79217365096,79210277193,79210277193,,,,,1724485584.10017,,11825 +"2024-08-24 10:46:34","""79210277193"" <79210277193>",79210277193,194,ext-queues,PJSIP/Megafon_3-0000119c,Local/13@from-queue-00000abd;1,Queue,"194,tR,,,600,,,,,",29,29,"NO ANSWER",3,,1724485584.10017,,79217365096,79210277193,79210277193,,,,,1724485584.10017,,11822 +"2024-08-24 10:46:34","""79210277193"" <79210277193>",79210277193,10,ext-local,Local/10@from-queue-00000abe;2,PJSIP/10-0000119e,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",29,0,"NO ANSWER",3,,1724485594.10023,,,79210277193,79210277193,,,,external-10-79210277193-20240824-104634-1724485594.10023.wav,1724485584.10017,,11824 +"2024-08-24 10:46:34","""79210277193"" <79210277193>",79210277193,13,ext-local,Local/13@from-queue-00000abd;2,PJSIP/13-0000119f,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",29,0,"NO ANSWER",3,,1724485594.10021,,,79210277193,79210277193,,,,external-13-79210277193-20240824-104634-1724485594.10021.wav,1724485584.10017,,11821 +"2024-08-24 10:46:34","""79210277193"" <79210277193>",79210277193,12,ext-local,Local/12@from-queue-00000abc;2,PJSIP/12-0000119d,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",29,0,"NO ANSWER",3,,1724485594.10019,,,79210277193,79210277193,,,,external-12-79210277193-20240824-104634-1724485594.10019.wav,1724485584.10017,,11819 +"2024-08-24 10:46:24","""79210277193"" <79210277193>",79210277193,194,ext-queues,PJSIP/Megafon_3-0000119c,Local/12@from-queue-00000abc;1,Queue,"194,tR,,,600,,,,,",40,40,"NO ANSWER",3,,1724485584.10017,,79217365096,79210277193,79210277193,,,,,1724485584.10017,,11817 +"2024-08-24 10:30:59","""79116036976"" <79116036976>",79116036976,194,ext-queues,PJSIP/Megafon_3-00001198,Local/10@from-queue-00000abb;1,Queue,"194,tR,,,600,,,,,",25,25,ANSWERED,3,,1724484648.10007,,79217365096,79116036976,79116036976,,,,,1724484648.10007,,11813 +"2024-08-24 10:30:59","""79116036976"" <79116036976>",79116036976,194,ext-queues,PJSIP/Megafon_3-00001198,Local/13@from-queue-00000aba;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724484648.10007,,79217365096,79116036976,79116036976,,,,,1724484648.10007,,11810 +"2024-08-24 10:30:59","""79116036976"" <79116036976>",79116036976,10,ext-local,Local/10@from-queue-00000abb;2,PJSIP/10-0000119b,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",25,19,ANSWERED,3,,1724484659.10013,,,79116036976,79116036976,,,,external-10-79116036976-20240824-103059-1724484659.10013.wav,1724484648.10007,,11812 +"2024-08-24 10:30:59","""79116036976"" <79116036976>",79116036976,12,ext-local,Local/12@from-queue-00000ab9;2,PJSIP/12-00001199,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724484659.10009,,,79116036976,79116036976,,,,external-12-79116036976-20240824-103059-1724484659.10009.wav,1724484648.10007,,11807 +"2024-08-24 10:30:59","""79116036976"" <79116036976>",79116036976,13,ext-local,Local/13@from-queue-00000aba;2,PJSIP/13-0000119a,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724484659.10011,,,79116036976,79116036976,,,,external-13-79116036976-20240824-103059-1724484659.10011.wav,1724484648.10007,,11809 +"2024-08-24 10:30:48","""79116036976"" <79116036976>",79116036976,194,ext-queues,PJSIP/Megafon_3-00001198,Local/12@from-queue-00000ab9;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724484648.10007,,79217365096,79116036976,79116036976,,,,,1724484648.10007,,11805 +"2024-08-24 10:28:07","""79116155545"" <79116155545>",79116155545,194,ext-queues,PJSIP/Megafon_3-00001194,Local/10@from-queue-00000ab8;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724484476.9997,,79217365096,79116155545,79116155545,,,,,1724484476.9997,,11802 +"2024-08-24 10:28:07","""79116155545"" <79116155545>",79116155545,194,ext-queues,PJSIP/Megafon_3-00001194,Local/13@from-queue-00000ab7;1,Queue,"194,tR,,,600,,,,,",51,51,ANSWERED,3,,1724484476.9997,,79217365096,79116155545,79116155545,,,,,1724484476.9997,,11798 +"2024-08-24 10:28:07","""79116155545"" <79116155545>",79116155545,13,ext-local,Local/13@from-queue-00000ab7;2,PJSIP/13-00001195,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",51,45,ANSWERED,3,,1724484487.10001,,,79116155545,79116155545,,,,external-13-79116155545-20240824-102807-1724484487.10001.wav,1724484476.9997,,11797 +"2024-08-24 10:28:07","""79116155545"" <79116155545>",79116155545,12,ext-local,Local/12@from-queue-00000ab6;2,PJSIP/12-00001196,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724484487.9999,,,79116155545,79116155545,,,,external-12-79116155545-20240824-102807-1724484487.9999.wav,1724484476.9997,,11795 +"2024-08-24 10:28:07","""79116155545"" <79116155545>",79116155545,10,ext-local,Local/10@from-queue-00000ab8;2,PJSIP/10-00001197,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724484487.10003,,,79116155545,79116155545,,,,external-10-79116155545-20240824-102807-1724484487.10003.wav,1724484476.9997,,11800 +"2024-08-24 10:27:56","""79116155545"" <79116155545>",79116155545,194,ext-queues,PJSIP/Megafon_3-00001194,Local/12@from-queue-00000ab6;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724484476.9997,,79217365096,79116155545,79116155545,,,,,1724484476.9997,,11793 +"2024-08-24 10:26:01","""79021495945"" <79021495945>",79021495945,13,ext-local,Local/13@from-queue-00000ab4;2,PJSIP/13-00001193,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",45,39,ANSWERED,3,,1724484361.9991,,,79021495945,79021495945,,,,external-13-79021495945-20240824-102601-1724484361.9991.wav,1724484350.9987,,11785 +"2024-08-24 10:26:01","""79021495945"" <79021495945>",79021495945,194,ext-queues,PJSIP/Megafon_3-00001190,Local/10@from-queue-00000ab5;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724484350.9987,,79217365096,79021495945,79021495945,,,,,1724484350.9987,,11789 +"2024-08-24 10:26:01","""79021495945"" <79021495945>",79021495945,194,ext-queues,PJSIP/Megafon_3-00001190,Local/13@from-queue-00000ab4;1,Queue,"194,tR,,,600,,,,,",45,45,ANSWERED,3,,1724484350.9987,,79217365096,79021495945,79021495945,,,,,1724484350.9987,,11786 +"2024-08-24 10:26:01","""79021495945"" <79021495945>",79021495945,10,ext-local,Local/10@from-queue-00000ab5;2,PJSIP/10-00001192,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724484361.9993,,,79021495945,79021495945,,,,external-10-79021495945-20240824-102601-1724484361.9993.wav,1724484350.9987,,11788 +"2024-08-24 10:26:01","""79021495945"" <79021495945>",79021495945,12,ext-local,Local/12@from-queue-00000ab3;2,PJSIP/12-00001191,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724484361.9989,,,79021495945,79021495945,,,,external-12-79021495945-20240824-102601-1724484361.9989.wav,1724484350.9987,,11783 +"2024-08-24 10:25:50","""79021495945"" <79021495945>",79021495945,194,ext-queues,PJSIP/Megafon_3-00001190,Local/12@from-queue-00000ab3;1,Queue,"194,tR,,,600,,,,,",17,17,"NO ANSWER",3,,1724484350.9987,,79217365096,79021495945,79021495945,,,,,1724484350.9987,,11781 +"2024-08-24 10:23:26","""79082910679"" <79082910679>",79082910679,194,ext-queues,PJSIP/Megafon_3-0000118c,Local/10@from-queue-00000ab2;1,Queue,"194,tR,,,600,,,,,",21,21,ANSWERED,3,,1724484195.9977,,79217365096,79082910679,79082910679,,,,,1724484195.9977,,11777 +"2024-08-24 10:23:26","""79082910679"" <79082910679>",79082910679,194,ext-queues,PJSIP/Megafon_3-0000118c,Local/13@from-queue-00000ab1;1,Queue,"194,tR,,,600,,,,,",8,8,"NO ANSWER",3,,1724484195.9977,,79217365096,79082910679,79082910679,,,,,1724484195.9977,,11774 +"2024-08-24 10:23:26","""79082910679"" <79082910679>",79082910679,10,ext-local,Local/10@from-queue-00000ab2;2,PJSIP/10-0000118d,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",21,13,ANSWERED,3,,1724484206.9983,,,79082910679,79082910679,,,,external-10-79082910679-20240824-102326-1724484206.9983.wav,1724484195.9977,,11776 +"2024-08-24 10:23:26","""79082910679"" <79082910679>",79082910679,13,ext-local,Local/13@from-queue-00000ab1;2,PJSIP/13-0000118f,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",8,0,"NO ANSWER",3,,1724484206.9981,,,79082910679,79082910679,,,,external-13-79082910679-20240824-102326-1724484206.9981.wav,1724484195.9977,,11773 +"2024-08-24 10:23:26","""79082910679"" <79082910679>",79082910679,12,ext-local,Local/12@from-queue-00000ab0;2,PJSIP/12-0000118e,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",8,0,"NO ANSWER",3,,1724484206.9979,,,79082910679,79082910679,,,,external-12-79082910679-20240824-102326-1724484206.9979.wav,1724484195.9977,,11771 +"2024-08-24 10:23:15","""79082910679"" <79082910679>",79082910679,194,ext-queues,PJSIP/Megafon_3-0000118c,Local/12@from-queue-00000ab0;1,Queue,"194,tR,,,600,,,,,",18,18,"NO ANSWER",3,,1724484195.9977,,79217365096,79082910679,79082910679,,,,,1724484195.9977,,11769 +"2024-08-24 10:14:41","""79517295595"" <79517295595>",79517295595,194,ext-queues,PJSIP/Megafon_3-00001188,Local/10@from-queue-00000aaf;1,Queue,"194,tR,,,600,,,,,",35,35,ANSWERED,3,,1724483671.9967,,79217365096,79517295595,79517295595,,,,,1724483671.9967,,11765 +"2024-08-24 10:14:41","""79517295595"" <79517295595>",79517295595,194,ext-queues,PJSIP/Megafon_3-00001188,Local/13@from-queue-00000aae;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724483671.9967,,79217365096,79517295595,79517295595,,,,,1724483671.9967,,11762 +"2024-08-24 10:14:41","""79517295595"" <79517295595>",79517295595,10,ext-local,Local/10@from-queue-00000aaf;2,PJSIP/10-00001189,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",35,29,ANSWERED,3,,1724483681.9973,,,79517295595,79517295595,,,,external-10-79517295595-20240824-101441-1724483681.9973.wav,1724483671.9967,,11764 +"2024-08-24 10:14:41","""79517295595"" <79517295595>",79517295595,12,ext-local,Local/12@from-queue-00000aad;2,PJSIP/12-0000118a,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724483681.9969,,,79517295595,79517295595,,,,external-12-79517295595-20240824-101441-1724483681.9969.wav,1724483671.9967,,11759 +"2024-08-24 10:14:41","""79517295595"" <79517295595>",79517295595,13,ext-local,Local/13@from-queue-00000aae;2,PJSIP/13-0000118b,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724483681.9971,,,79517295595,79517295595,,,,external-13-79517295595-20240824-101441-1724483681.9971.wav,1724483671.9967,,11761 +"2024-08-24 10:14:31","""79517295595"" <79517295595>",79517295595,194,ext-queues,PJSIP/Megafon_3-00001188,Local/12@from-queue-00000aad;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724483671.9967,,79217365096,79517295595,79517295595,,,,,1724483671.9967,,11757 +"2024-08-24 10:09:06","""79524846673"" <79524846673>",79524846673,194,ext-queues,PJSIP/Megafon_3-00001184,Local/10@from-queue-00000aac;1,Queue,"194,tR,,,600,,,,,",101,101,ANSWERED,3,,1724483335.9957,,79217365096,79524846673,79524846673,,,,,1724483335.9957,,11753 +"2024-08-24 10:09:06","""79524846673"" <79524846673>",79524846673,194,ext-queues,PJSIP/Megafon_3-00001184,Local/13@from-queue-00000aab;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724483335.9957,,79217365096,79524846673,79524846673,,,,,1724483335.9957,,11750 +"2024-08-24 10:09:06","""79524846673"" <79524846673>",79524846673,10,ext-local,Local/10@from-queue-00000aac;2,PJSIP/10-00001187,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",101,95,ANSWERED,3,,1724483346.9963,,,79524846673,79524846673,,,,external-10-79524846673-20240824-100906-1724483346.9963.wav,1724483335.9957,,11752 +"2024-08-24 10:09:06","""79524846673"" <79524846673>",79524846673,13,ext-local,Local/13@from-queue-00000aab;2,PJSIP/13-00001185,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724483346.9961,,,79524846673,79524846673,,,,external-13-79524846673-20240824-100906-1724483346.9961.wav,1724483335.9957,,11749 +"2024-08-24 10:09:06","""79524846673"" <79524846673>",79524846673,12,ext-local,Local/12@from-queue-00000aaa;2,PJSIP/12-00001186,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724483346.9959,,,79524846673,79524846673,,,,external-12-79524846673-20240824-100906-1724483346.9959.wav,1724483335.9957,,11747 +"2024-08-24 10:08:55","""79524846673"" <79524846673>",79524846673,194,ext-queues,PJSIP/Megafon_3-00001184,Local/12@from-queue-00000aaa;1,Queue,"194,tR,,,600,,,,,",17,17,"NO ANSWER",3,,1724483335.9957,,79217365096,79524846673,79524846673,,,,,1724483335.9957,,11745 +"2024-08-24 10:01:22","""79602011453"" <79602011453>",79602011453,194,ext-queues,PJSIP/Megafon_3-00001180,Local/10@from-queue-00000aa9;1,Queue,"194,tR,,,600,,,,,",73,73,ANSWERED,3,,1724482871.9947,,79217365096,79602011453,79602011453,,,,,1724482871.9947,,11741 +"2024-08-24 10:01:22","""79602011453"" <79602011453>",79602011453,194,ext-queues,PJSIP/Megafon_3-00001180,Local/13@from-queue-00000aa8;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724482871.9947,,79217365096,79602011453,79602011453,,,,,1724482871.9947,,11738 +"2024-08-24 10:01:22","""79602011453"" <79602011453>",79602011453,10,ext-local,Local/10@from-queue-00000aa9;2,PJSIP/10-00001183,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",73,67,ANSWERED,3,,1724482882.9953,,,79602011453,79602011453,,,,external-10-79602011453-20240824-100122-1724482882.9953.wav,1724482871.9947,,11740 +"2024-08-24 10:01:22","""79602011453"" <79602011453>",79602011453,13,ext-local,Local/13@from-queue-00000aa8;2,PJSIP/13-00001181,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724482882.9951,,,79602011453,79602011453,,,,external-13-79602011453-20240824-100122-1724482882.9951.wav,1724482871.9947,,11737 +"2024-08-24 10:01:22","""79602011453"" <79602011453>",79602011453,12,ext-local,Local/12@from-queue-00000aa7;2,PJSIP/12-00001182,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724482882.9949,,,79602011453,79602011453,,,,external-12-79602011453-20240824-100122-1724482882.9949.wav,1724482871.9947,,11735 +"2024-08-24 10:01:11","""79602011453"" <79602011453>",79602011453,194,ext-queues,PJSIP/Megafon_3-00001180,Local/12@from-queue-00000aa7;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724482871.9947,,79217365096,79602011453,79602011453,,,,,1724482871.9947,,11733 +"2024-08-24 09:58:54","""79992849942"" <79992849942>",79992849942,10,ext-local,Local/10@from-queue-00000aa6;2,PJSIP/10-0000117f,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",93,85,ANSWERED,3,,1724482734.9943,,,79992849942,79992849942,,,,external-10-79992849942-20240824-095854-1724482734.9943.wav,1724482724.9937,,11728 +"2024-08-24 09:58:54","""79992849942"" <79992849942>",79992849942,194,ext-queues,PJSIP/Megafon_3-0000117c,Local/10@from-queue-00000aa6;1,Queue,"194,tR,,,600,,,,,",93,93,ANSWERED,3,,1724482724.9937,,79217365096,79992849942,79992849942,,,,,1724482724.9937,,11729 +"2024-08-24 09:58:54","""79992849942"" <79992849942>",79992849942,194,ext-queues,PJSIP/Megafon_3-0000117c,Local/13@from-queue-00000aa5;1,Queue,"194,tR,,,600,,,,,",8,8,"NO ANSWER",3,,1724482724.9937,,79217365096,79992849942,79992849942,,,,,1724482724.9937,,11726 +"2024-08-24 09:58:54","""79992849942"" <79992849942>",79992849942,13,ext-local,Local/13@from-queue-00000aa5;2,PJSIP/13-0000117d,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",8,0,"NO ANSWER",3,,1724482734.9941,,,79992849942,79992849942,,,,external-13-79992849942-20240824-095854-1724482734.9941.wav,1724482724.9937,,11725 +"2024-08-24 09:58:54","""79992849942"" <79992849942>",79992849942,12,ext-local,Local/12@from-queue-00000aa4;2,PJSIP/12-0000117e,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",8,0,"NO ANSWER",3,,1724482734.9939,,,79992849942,79992849942,,,,external-12-79992849942-20240824-095854-1724482734.9939.wav,1724482724.9937,,11723 +"2024-08-24 09:58:44","""79992849942"" <79992849942>",79992849942,194,ext-queues,PJSIP/Megafon_3-0000117c,Local/12@from-queue-00000aa4;1,Queue,"194,tR,,,600,,,,,",19,19,"NO ANSWER",3,,1724482724.9937,,79217365096,79992849942,79992849942,,,,,1724482724.9937,,11721 +"2024-08-24 09:49:36",""""" <78162769402>",78162769402,988003334419,from-internal,PJSIP/13-0000117a,PJSIP/rt_769402-0000117b,Dial,"PJSIP/+78003334419@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",309,308,ANSWERED,3,,1724482176.9935,,,13,Регистратура_2,78162769402,,,out-988003334419-13-20240824-094936-1724482176.9935.wav,1724482176.9935,,11719 +"2024-08-24 09:49:08",""""" <78162769402>",78162769402,988003334419,from-internal,PJSIP/13-00001178,PJSIP/rt_769402-00001179,Dial,"PJSIP/+78003334419@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob",17,16,ANSWERED,3,,1724482148.9933,,,13,Регистратура_2,78162769402,,,out-988003334419-13-20240824-094908-1724482148.9933.wav,1724482148.9933,,11717 +"2024-08-24 09:39:14","""74996497130"" <74996497130>",74996497130,194,ext-queues,PJSIP/Megafon_3-00001174,Local/10@from-queue-00000aa3;1,Queue,"194,tR,,,600,,,,,",35,35,ANSWERED,3,,1724481543.9923,,79217365096,74996497130,74996497130,,,,,1724481543.9923,,11713 +"2024-08-24 09:39:14","""74996497130"" <74996497130>",74996497130,194,ext-queues,PJSIP/Megafon_3-00001174,Local/13@from-queue-00000aa2;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724481543.9923,,79217365096,74996497130,74996497130,,,,,1724481543.9923,,11710 +"2024-08-24 09:39:14","""74996497130"" <74996497130>",74996497130,10,ext-local,Local/10@from-queue-00000aa3;2,PJSIP/10-00001175,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",34,28,ANSWERED,3,,1724481554.9929,,,74996497130,74996497130,,,,external-10-74996497130-20240824-093914-1724481554.9929.wav,1724481543.9923,,11712 +"2024-08-24 09:39:14","""74996497130"" <74996497130>",74996497130,13,ext-local,Local/13@from-queue-00000aa2;2,PJSIP/13-00001177,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724481554.9927,,,74996497130,74996497130,,,,external-13-74996497130-20240824-093914-1724481554.9927.wav,1724481543.9923,,11709 +"2024-08-24 09:39:14","""74996497130"" <74996497130>",74996497130,12,ext-local,Local/12@from-queue-00000aa1;2,PJSIP/12-00001176,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724481554.9925,,,74996497130,74996497130,,,,external-12-74996497130-20240824-093914-1724481554.9925.wav,1724481543.9923,,11707 +"2024-08-24 09:39:03","""74996497130"" <74996497130>",74996497130,194,ext-queues,PJSIP/Megafon_3-00001174,Local/12@from-queue-00000aa1;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724481543.9923,,79217365096,74996497130,74996497130,,,,,1724481543.9923,,11705 +"2024-08-24 09:37:30","""79212001949"" <79212001949>",79212001949,10,ext-local,Local/10@from-queue-00000aa0;2,PJSIP/10-00001172,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",68,61,ANSWERED,3,,1724481450.9919,,,79212001949,79212001949,,,,external-10-79212001949-20240824-093730-1724481450.9919.wav,1724481440.9913,,11700 +"2024-08-24 09:37:30","""79212001949"" <79212001949>",79212001949,194,ext-queues,PJSIP/rt_769402-00001170,Local/10@from-queue-00000aa0;1,Queue,"194,tR,,,600,,,,,",68,68,ANSWERED,3,,1724481440.9913,,78162769402,79212001949,79212001949,,,,,1724481440.9913,,11701 +"2024-08-24 09:37:30","""79212001949"" <79212001949>",79212001949,194,ext-queues,PJSIP/rt_769402-00001170,Local/13@from-queue-00000a9f;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724481440.9913,,78162769402,79212001949,79212001949,,,,,1724481440.9913,,11698 +"2024-08-24 09:37:30","""79212001949"" <79212001949>",79212001949,13,ext-local,Local/13@from-queue-00000a9f;2,PJSIP/13-00001173,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724481450.9917,,,79212001949,79212001949,,,,external-13-79212001949-20240824-093730-1724481450.9917.wav,1724481440.9913,,11697 +"2024-08-24 09:37:30","""79212001949"" <79212001949>",79212001949,12,ext-local,Local/12@from-queue-00000a9e;2,PJSIP/12-00001171,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724481450.9915,,,79212001949,79212001949,,,,external-12-79212001949-20240824-093730-1724481450.9915.wav,1724481440.9913,,11695 +"2024-08-24 09:37:20","""79212001949"" <79212001949>",79212001949,194,ext-queues,PJSIP/rt_769402-00001170,Local/12@from-queue-00000a9e;1,Queue,"194,tR,,,600,,,,,",15,15,"NO ANSWER",3,,1724481440.9913,,78162769402,79212001949,79212001949,,,,,1724481440.9913,,11693 +"2024-08-24 09:35:06","""Регистратура_3"" <10>",10,16,ext-local,PJSIP/10-0000116e,PJSIP/16-0000116f,Dial,"PJSIP/16/sip:16@192.168.75.11:5066,,HhTtrb(func-apply-sipheaders^s^1)",33,19,ANSWERED,3,,1724481306.9911,,,10,Регистратура_3,,,,internal-16-10-20240824-093506-1724481306.9911.wav,1724481306.9911,,11691 +"2024-08-24 09:32:23","""79539042899"" <79539042899>",79539042899,10,ext-local,Local/10@from-queue-00000a9d;2,PJSIP/10-0000116c,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",78,59,ANSWERED,3,,1724481143.9908,,,79539042899,79539042899,,,,external-10-79539042899-20240824-093223-1724481143.9908.wav,1724481133.9904,,11687 +"2024-08-24 09:32:23","""79539042899"" <79539042899>",79539042899,194,ext-queues,PJSIP/Megafon_3-0000116b,Local/10@from-queue-00000a9d;1,Queue,"194,tR,,,600,,,,,",78,78,ANSWERED,3,,1724481133.9904,,79217365096,79539042899,79539042899,,,,,1724481133.9904,,11688 +"2024-08-24 09:32:23","""79539042899"" <79539042899>",79539042899,12,ext-local,Local/12@from-queue-00000a9c;2,PJSIP/12-0000116d,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",19,0,"NO ANSWER",3,,1724481143.9906,,,79539042899,79539042899,,,,external-12-79539042899-20240824-093223-1724481143.9906.wav,1724481133.9904,,11685 +"2024-08-24 09:32:13","""79539042899"" <79539042899>",79539042899,194,ext-queues,PJSIP/Megafon_3-0000116b,Local/12@from-queue-00000a9c;1,Queue,"194,tR,,,600,,,,,",29,29,"NO ANSWER",3,,1724481133.9904,,79217365096,79539042899,79539042899,,,,,1724481133.9904,,11683 +"2024-08-24 09:31:55","""79082251399"" <79082251399>",79082251399,194,ext-queues,PJSIP/Megafon_3-00001167,Local/10@from-queue-00000a9b;1,Queue,"194,tR,,,600,,,,,",9,9,"NO ANSWER",3,,1724481104.9894,,79217365096,79082251399,79082251399,,,,,1724481104.9894,,11679 +"2024-08-24 09:31:55","""79082251399"" <79082251399>",79082251399,194,ext-queues,PJSIP/Megafon_3-00001167,Local/13@from-queue-00000a9a;1,Queue,"194,tR,,,600,,,,,",105,105,ANSWERED,3,,1724481104.9894,,79217365096,79082251399,79082251399,,,,,1724481104.9894,,11676 +"2024-08-24 09:31:55","""79082251399"" <79082251399>",79082251399,13,ext-local,Local/13@from-queue-00000a9a;2,PJSIP/13-0000116a,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",105,95,ANSWERED,3,,1724481115.9898,,,79082251399,79082251399,,,,external-13-79082251399-20240824-093155-1724481115.9898.wav,1724481104.9894,,11675 +"2024-08-24 09:31:55","""79082251399"" <79082251399>",79082251399,12,ext-local,Local/12@from-queue-00000a99;2,PJSIP/12-00001169,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",9,0,"NO ANSWER",3,,1724481115.9896,,,79082251399,79082251399,,,,external-12-79082251399-20240824-093155-1724481115.9896.wav,1724481104.9894,,11673 +"2024-08-24 09:31:55","""79082251399"" <79082251399>",79082251399,10,ext-local,Local/10@from-queue-00000a9b;2,PJSIP/10-00001168,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",9,0,"NO ANSWER",3,,1724481115.9900,,,79082251399,79082251399,,,,external-10-79082251399-20240824-093155-1724481115.9900.wav,1724481104.9894,,11678 +"2024-08-24 09:31:44","""79082251399"" <79082251399>",79082251399,194,ext-queues,PJSIP/Megafon_3-00001167,Local/12@from-queue-00000a99;1,Queue,"194,tR,,,600,,,,,",20,20,"NO ANSWER",3,,1724481104.9894,,79217365096,79082251399,79082251399,,,,,1724481104.9894,,11671 +"2024-08-24 09:24:53","""79210254455"" <79210254455>",79210254455,194,ext-queues,PJSIP/Megafon_3-00001163,Local/10@from-queue-00000a98;1,Queue,"194,tR,,,600,,,,,",73,73,ANSWERED,3,,1724480682.9884,,79217365096,79210254455,79210254455,,,,,1724480682.9884,,11667 +"2024-08-24 09:24:53","""79210254455"" <79210254455>",79210254455,194,ext-queues,PJSIP/Megafon_3-00001163,Local/13@from-queue-00000a97;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724480682.9884,,79217365096,79210254455,79210254455,,,,,1724480682.9884,,11664 +"2024-08-24 09:24:53","""79210254455"" <79210254455>",79210254455,10,ext-local,Local/10@from-queue-00000a98;2,PJSIP/10-00001166,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",73,67,ANSWERED,3,,1724480693.9890,,,79210254455,79210254455,,,,external-10-79210254455-20240824-092453-1724480693.9890.wav,1724480682.9884,,11666 +"2024-08-24 09:24:53","""79210254455"" <79210254455>",79210254455,13,ext-local,Local/13@from-queue-00000a97;2,PJSIP/13-00001165,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724480693.9888,,,79210254455,79210254455,,,,external-13-79210254455-20240824-092453-1724480693.9888.wav,1724480682.9884,,11663 +"2024-08-24 09:24:53","""79210254455"" <79210254455>",79210254455,12,ext-local,Local/12@from-queue-00000a96;2,PJSIP/12-00001164,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724480693.9886,,,79210254455,79210254455,,,,external-12-79210254455-20240824-092453-1724480693.9886.wav,1724480682.9884,,11661 +"2024-08-24 09:24:42","""79210254455"" <79210254455>",79210254455,194,ext-queues,PJSIP/Megafon_3-00001163,Local/12@from-queue-00000a96;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724480682.9884,,79217365096,79210254455,79210254455,,,,,1724480682.9884,,11659 +"2024-08-24 09:17:31","""79116073126"" <79116073126>",79116073126,194,ext-queues,PJSIP/Megafon_3-0000115f,Local/10@from-queue-00000a95;1,Queue,"194,tR,,,600,,,,,",49,49,ANSWERED,3,,1724480240.9874,,79217365096,79116073126,79116073126,,,,,1724480240.9874,,11655 +"2024-08-24 09:17:31","""79116073126"" <79116073126>",79116073126,194,ext-queues,PJSIP/Megafon_3-0000115f,Local/13@from-queue-00000a94;1,Queue,"194,tR,,,600,,,,,",7,7,"NO ANSWER",3,,1724480240.9874,,79217365096,79116073126,79116073126,,,,,1724480240.9874,,11652 +"2024-08-24 09:17:31","""79116073126"" <79116073126>",79116073126,10,ext-local,Local/10@from-queue-00000a95;2,PJSIP/10-00001161,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",49,42,ANSWERED,3,,1724480251.9880,,,79116073126,79116073126,,,,external-10-79116073126-20240824-091731-1724480251.9880.wav,1724480240.9874,,11654 +"2024-08-24 09:17:31","""79116073126"" <79116073126>",79116073126,12,ext-local,Local/12@from-queue-00000a93;2,PJSIP/12-00001160,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724480251.9876,,,79116073126,79116073126,,,,external-12-79116073126-20240824-091731-1724480251.9876.wav,1724480240.9874,,11649 +"2024-08-24 09:17:31","""79116073126"" <79116073126>",79116073126,13,ext-local,Local/13@from-queue-00000a94;2,PJSIP/13-00001162,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724480251.9878,,,79116073126,79116073126,,,,external-13-79116073126-20240824-091731-1724480251.9878.wav,1724480240.9874,,11651 +"2024-08-24 09:17:20","""79116073126"" <79116073126>",79116073126,194,ext-queues,PJSIP/Megafon_3-0000115f,Local/12@from-queue-00000a93;1,Queue,"194,tR,,,600,,,,,",17,17,"NO ANSWER",3,,1724480240.9874,,79217365096,79116073126,79116073126,,,,,1724480240.9874,,11647 +"2024-08-24 09:12:47","""79211705192"" <79211705192>",79211705192,13,ext-local,Local/13@from-queue-00000a91;2,PJSIP/13-0000115e,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",39,33,ANSWERED,3,,1724479967.9868,,,79211705192,79211705192,,,,external-13-79211705192-20240824-091247-1724479967.9868.wav,1724479956.9864,,11639 +"2024-08-24 09:12:47","""79211705192"" <79211705192>",79211705192,194,ext-queues,PJSIP/Megafon_3-0000115b,Local/10@from-queue-00000a92;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724479956.9864,,79217365096,79211705192,79211705192,,,,,1724479956.9864,,11643 +"2024-08-24 09:12:47","""79211705192"" <79211705192>",79211705192,194,ext-queues,PJSIP/Megafon_3-0000115b,Local/13@from-queue-00000a91;1,Queue,"194,tR,,,600,,,,,",39,39,ANSWERED,3,,1724479956.9864,,79217365096,79211705192,79211705192,,,,,1724479956.9864,,11640 +"2024-08-24 09:12:47","""79211705192"" <79211705192>",79211705192,10,ext-local,Local/10@from-queue-00000a92;2,PJSIP/10-0000115d,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724479967.9870,,,79211705192,79211705192,,,,external-10-79211705192-20240824-091247-1724479967.9870.wav,1724479956.9864,,11642 +"2024-08-24 09:12:47","""79211705192"" <79211705192>",79211705192,12,ext-local,Local/12@from-queue-00000a90;2,PJSIP/12-0000115c,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724479967.9866,,,79211705192,79211705192,,,,external-12-79211705192-20240824-091247-1724479967.9866.wav,1724479956.9864,,11637 +"2024-08-24 09:12:36","""79211705192"" <79211705192>",79211705192,194,ext-queues,PJSIP/Megafon_3-0000115b,Local/12@from-queue-00000a90;1,Queue,"194,tR,,,600,,,,,",17,17,"NO ANSWER",3,,1724479956.9864,,79217365096,79211705192,79211705192,,,,,1724479956.9864,,11635 +"2024-08-24 09:11:23","""Каб. 4"" <16>",16,13,ext-local,PJSIP/16-00001159,PJSIP/13-0000115a,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrb(func-apply-sipheaders^s^1)",30,18,ANSWERED,3,,1724479883.9862,,,16,"Каб. 4",,,,internal-13-16-20240824-091123-1724479883.9862.wav,1724479883.9862,,11633 +"2024-08-24 09:10:56","""79082957865"" <79082957865>",79082957865,13,ext-local,Local/13@from-queue-00000a8e;2,PJSIP/13-00001158,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",18,12,ANSWERED,3,,1724479856.9857,,,79082957865,79082957865,,,,external-13-79082957865-20240824-091056-1724479856.9857.wav,1724479846.9855,,11627 +"2024-08-24 09:10:56","""79082957865"" <79082957865>",79082957865,194,ext-queues,PJSIP/Megafon_3-00001156,Local/10@from-queue-00000a8f;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724479846.9855,,79217365096,79082957865,79082957865,,,,,1724479846.9855,,11630 +"2024-08-24 09:10:56","""79082957865"" <79082957865>",79082957865,10,ext-local,Local/10@from-queue-00000a8f;2,PJSIP/10-00001157,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724479856.9859,,,79082957865,79082957865,,,,external-10-79082957865-20240824-091056-1724479856.9859.wav,1724479846.9855,,11629 +"2024-08-24 09:10:46","""79082957865"" <79082957865>",79082957865,194,ext-queues,PJSIP/Megafon_3-00001156,Local/13@from-queue-00000a8e;1,Queue,"194,tR,,,600,,,,,",29,29,ANSWERED,3,,1724479846.9855,,79217365096,79082957865,79082957865,,,,,1724479846.9855,,11625 +"2024-08-24 09:10:38","""79062026711"" <79062026711>",79062026711,12,ext-local,Local/12@from-queue-00000a8b;2,PJSIP/12-00001155,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",21,12,ANSWERED,3,,1724479838.9847,,,79062026711,79062026711,,,,external-12-79062026711-20240824-091038-1724479838.9847.wav,1724479827.9845,,11615 +"2024-08-24 09:10:38","""79062026711"" <79062026711>",79062026711,194,ext-queues,PJSIP/Megafon_3-00001152,Local/10@from-queue-00000a8d;1,Queue,"194,tR,,,600,,,,,",8,8,"NO ANSWER",3,,1724479827.9845,,79217365096,79062026711,79062026711,,,,,1724479827.9845,,11621 +"2024-08-24 09:10:38","""79062026711"" <79062026711>",79062026711,194,ext-queues,PJSIP/Megafon_3-00001152,Local/13@from-queue-00000a8c;1,Queue,"194,tR,,,600,,,,,",8,8,"NO ANSWER",3,,1724479827.9845,,79217365096,79062026711,79062026711,,,,,1724479827.9845,,11618 +"2024-08-24 09:10:38","""79062026711"" <79062026711>",79062026711,13,ext-local,Local/13@from-queue-00000a8c;2,PJSIP/13-00001153,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",8,0,"NO ANSWER",3,,1724479838.9849,,,79062026711,79062026711,,,,external-13-79062026711-20240824-091038-1724479838.9849.wav,1724479827.9845,,11617 +"2024-08-24 09:10:38","""79062026711"" <79062026711>",79062026711,10,ext-local,Local/10@from-queue-00000a8d;2,PJSIP/10-00001154,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",8,0,"NO ANSWER",3,,1724479838.9851,,,79062026711,79062026711,,,,external-10-79062026711-20240824-091038-1724479838.9851.wav,1724479827.9845,,11620 +"2024-08-24 09:10:27","""79062026711"" <79062026711>",79062026711,194,ext-queues,PJSIP/Megafon_3-00001152,Local/12@from-queue-00000a8b;1,Queue,"194,tR,,,600,,,,,",31,31,ANSWERED,3,,1724479827.9845,,79217365096,79062026711,79062026711,,,,,1724479827.9845,,11613 +"2024-08-24 09:09:48","""79506836158"" <79506836158>",79506836158,13,ext-local,Local/13@from-queue-00000a89;2,PJSIP/13-00001150,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",23,17,ANSWERED,3,,1724479788.9839,,,79506836158,79506836158,,,,external-13-79506836158-20240824-090948-1724479788.9839.wav,1724479777.9835,,11605 +"2024-08-24 09:09:48","""79506836158"" <79506836158>",79506836158,194,ext-queues,PJSIP/Megafon_3-0000114e,Local/10@from-queue-00000a8a;1,Queue,"194,tR,,,600,,,,,",6,6,"NO ANSWER",3,,1724479777.9835,,79217365096,79506836158,79506836158,,,,,1724479777.9835,,11610 +"2024-08-24 09:09:48","""79506836158"" <79506836158>",79506836158,194,ext-queues,PJSIP/Megafon_3-0000114e,Local/13@from-queue-00000a89;1,Queue,"194,tR,,,600,,,,,",23,23,ANSWERED,3,,1724479777.9835,,79217365096,79506836158,79506836158,,,,,1724479777.9835,,11606 +"2024-08-24 09:09:48","""79506836158"" <79506836158>",79506836158,10,ext-local,Local/10@from-queue-00000a8a;2,PJSIP/10-00001151,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724479788.9841,,,79506836158,79506836158,,,,external-10-79506836158-20240824-090948-1724479788.9841.wav,1724479777.9835,,11608 +"2024-08-24 09:09:48","""79506836158"" <79506836158>",79506836158,12,ext-local,Local/12@from-queue-00000a88;2,PJSIP/12-0000114f,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",6,0,"NO ANSWER",3,,1724479788.9837,,,79506836158,79506836158,,,,external-12-79506836158-20240824-090948-1724479788.9837.wav,1724479777.9835,,11603 +"2024-08-24 09:09:37","""79506836158"" <79506836158>",79506836158,194,ext-queues,PJSIP/Megafon_3-0000114e,Local/12@from-queue-00000a88;1,Queue,"194,tR,,,600,,,,,",17,17,"NO ANSWER",3,,1724479777.9835,,79217365096,79506836158,79506836158,,,,,1724479777.9835,,11601 +"2024-08-24 09:06:03","""79539042899"" <79539042899>",79539042899,194,ext-queues,PJSIP/Megafon_3-0000114a,Local/10@from-queue-00000a87;1,Queue,"194,tR,,,600,,,,,",7,7,"NO ANSWER",3,,1724479553.9825,,79217365096,79539042899,79539042899,,,,,1724479553.9825,,11597 +"2024-08-24 09:06:03","""79539042899"" <79539042899>",79539042899,194,ext-queues,PJSIP/Megafon_3-0000114a,Local/13@from-queue-00000a86;1,Queue,"194,tR,,,600,,,,,",28,28,ANSWERED,3,,1724479553.9825,,79217365096,79539042899,79539042899,,,,,1724479553.9825,,11594 +"2024-08-24 09:06:03","""79539042899"" <79539042899>",79539042899,13,ext-local,Local/13@from-queue-00000a86;2,PJSIP/13-0000114c,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",28,21,ANSWERED,3,,1724479563.9829,,,79539042899,79539042899,,,,external-13-79539042899-20240824-090603-1724479563.9829.wav,1724479553.9825,,11593 +"2024-08-24 09:06:03","""79539042899"" <79539042899>",79539042899,12,ext-local,Local/12@from-queue-00000a85;2,PJSIP/12-0000114b,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724479563.9827,,,79539042899,79539042899,,,,external-12-79539042899-20240824-090603-1724479563.9827.wav,1724479553.9825,,11591 +"2024-08-24 09:06:03","""79539042899"" <79539042899>",79539042899,10,ext-local,Local/10@from-queue-00000a87;2,PJSIP/10-0000114d,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",7,0,"NO ANSWER",3,,1724479563.9831,,,79539042899,79539042899,,,,external-10-79539042899-20240824-090603-1724479563.9831.wav,1724479553.9825,,11596 +"2024-08-24 09:05:53","""79539042899"" <79539042899>",79539042899,194,ext-queues,PJSIP/Megafon_3-0000114a,Local/12@from-queue-00000a85;1,Queue,"194,tR,,,600,,,,,",17,17,"NO ANSWER",3,,1724479553.9825,,79217365096,79539042899,79539042899,,,,,1724479553.9825,,11589 +"2024-08-24 09:03:41","""79658088588"" <79658088588>",79658088588,194,ext-queues,PJSIP/Megafon_3-00001147,Local/10@from-queue-00000a84;1,Queue,"194,tR,,,600,,,,,",40,40,ANSWERED,3,,1724479410.9818,,79217365096,79658088588,79658088588,,,,,1724479410.9818,,11586 +"2024-08-24 09:03:41","""79658088588"" <79658088588>",79658088588,10,ext-local,Local/10@from-queue-00000a84;2,PJSIP/10-00001148,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",40,35,ANSWERED,3,,1724479421.9822,,,79658088588,79658088588,,,,external-10-79658088588-20240824-090341-1724479421.9822.wav,1724479410.9818,,11585 +"2024-08-24 09:03:41","""79658088588"" <79658088588>",79658088588,13,ext-local,Local/13@from-queue-00000a83;2,PJSIP/13-00001149,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724479421.9820,,,79658088588,79658088588,,,,external-13-79658088588-20240824-090341-1724479421.9820.wav,1724479410.9818,,11583 +"2024-08-24 09:03:30","""79658088588"" <79658088588>",79658088588,194,ext-queues,PJSIP/Megafon_3-00001147,Local/13@from-queue-00000a83;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724479410.9818,,79217365096,79658088588,79658088588,,,,,1724479410.9818,,11581 +"2024-08-24 09:02:48","""74996497130"" <74996497130>",74996497130,10,ext-local,Local/10@from-queue-00000a82;2,PJSIP/10-00001146,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",19,14,ANSWERED,3,,1724479368.9815,,,74996497130,74996497130,,,,external-10-74996497130-20240824-090248-1724479368.9815.wav,1724479357.9811,,11577 +"2024-08-24 09:02:48","""74996497130"" <74996497130>",74996497130,194,ext-queues,PJSIP/Megafon_3-00001144,Local/10@from-queue-00000a82;1,Queue,"194,tR,,,600,,,,,",19,19,ANSWERED,3,,1724479357.9811,,79217365096,74996497130,74996497130,,,,,1724479357.9811,,11578 +"2024-08-24 09:02:48","""74996497130"" <74996497130>",74996497130,13,ext-local,Local/13@from-queue-00000a81;2,PJSIP/13-00001145,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",4,0,"NO ANSWER",3,,1724479368.9813,,,74996497130,74996497130,,,,external-13-74996497130-20240824-090248-1724479368.9813.wav,1724479357.9811,,11575 +"2024-08-24 09:02:37","""74996497130"" <74996497130>",74996497130,194,ext-queues,PJSIP/Megafon_3-00001144,Local/13@from-queue-00000a81;1,Queue,"194,tR,,,600,,,,,",15,15,"NO ANSWER",3,,1724479357.9811,,79217365096,74996497130,74996497130,,,,,1724479357.9811,,11573 +"2024-08-24 09:02:23","""79517257888"" <79517257888>",79517257888,10,ext-local,Local/10@from-queue-00000a80;2,PJSIP/10-00001143,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",19,12,ANSWERED,3,,1724479343.9809,,,79517257888,79517257888,,,,external-10-79517257888-20240824-090223-1724479343.9809.wav,1724479322.9801,,11571 +"2024-08-24 09:02:04","""79116094059"" <79116094059>",79116094059,194,ext-queues,PJSIP/Megafon_3-0000113c,Local/10@from-queue-00000a7f;1,Queue,"194,tR,,,600,,,,,",18,18,"NO ANSWER",3,,1724479306.9791,,79217365096,79116094059,79116094059,,,,,1724479306.9791,,11567 +"2024-08-24 09:02:04","""79116094059"" <79116094059>",79116094059,12,ext-local,Local/12@from-queue-00000a7e;2,PJSIP/12-00001141,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",110,91,ANSWERED,3,,1724479324.9803,,,79116094059,79116094059,,,,external-12-79116094059-20240824-090204-1724479324.9803.wav,1724479306.9791,,11564 +"2024-08-24 09:02:04","""79116094059"" <79116094059>",79116094059,10,ext-local,Local/10@from-queue-00000a7f;2,PJSIP/10-00001142,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",18,0,"NO ANSWER",3,,1724479324.9805,,,79116094059,79116094059,,,,external-10-79116094059-20240824-090204-1724479324.9805.wav,1724479306.9791,,11566 +"2024-08-24 09:02:02","""79517257888"" <79517257888>",79517257888,194,ext-queues,PJSIP/Megafon_3-00001140,Local/10@from-queue-00000a80;1,Queue,"194,tR,,,600,,,,,",40,40,ANSWERED,3,,1724479322.9801,,79217365096,79517257888,79517257888,,,,,1724479322.9801,,11562 +"2024-08-24 09:01:53","""79116238157"" <79116238157>",79116238157,194,ext-queues,PJSIP/Megafon_3-0000113b,Local/10@from-queue-00000a7d;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724479302.9790,,79217365096,79116238157,79116238157,,,,,1724479302.9790,,11558 +"2024-08-24 09:01:53","""79116238157"" <79116238157>",79116238157,194,ext-queues,PJSIP/Megafon_3-0000113b,Local/13@from-queue-00000a7c;1,Queue,"194,tR,,,600,,,,,",36,36,ANSWERED,3,,1724479302.9790,,79217365096,79116238157,79116238157,,,,,1724479302.9790,,11555 +"2024-08-24 09:01:53","""79116238157"" <79116238157>",79116238157,13,ext-local,Local/13@from-queue-00000a7c;2,PJSIP/13-0000113d,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",36,31,ANSWERED,3,,1724479313.9795,,,79116238157,79116238157,,,,external-13-79116238157-20240824-090153-1724479313.9795.wav,1724479302.9790,,11554 +"2024-08-24 09:01:53","""79116238157"" <79116238157>",79116238157,10,ext-local,Local/10@from-queue-00000a7d;2,PJSIP/10-0000113f,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724479313.9797,,,79116238157,79116238157,,,,external-10-79116238157-20240824-090153-1724479313.9797.wav,1724479302.9790,,11557 +"2024-08-24 09:01:53","""79116238157"" <79116238157>",79116238157,12,ext-local,Local/12@from-queue-00000a7b;2,PJSIP/12-0000113e,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724479313.9793,,,79116238157,79116238157,,,,external-12-79116238157-20240824-090153-1724479313.9793.wav,1724479302.9790,,11552 +"2024-08-24 09:01:46","""79116094059"" <79116094059>",79116094059,194,ext-queues,PJSIP/Megafon_3-0000113c,Local/12@from-queue-00000a7e;1,Queue,"194,tR,,,600,,,,,",128,128,ANSWERED,3,,1724479306.9791,,79217365096,79116094059,79116094059,,,,,1724479306.9791,,11550 +"2024-08-24 09:01:42","""79116238157"" <79116238157>",79116238157,194,ext-queues,PJSIP/Megafon_3-0000113b,Local/12@from-queue-00000a7b;1,Queue,"194,tR,,,600,,,,,",15,15,"NO ANSWER",3,,1724479302.9790,,79217365096,79116238157,79116238157,,,,,1724479302.9790,,11549 +"2024-08-24 09:01:30","""79116036976"" <79116036976>",79116036976,194,ext-queues,PJSIP/Megafon_3-00001137,Local/10@from-queue-00000a7a;1,Queue,"194,tR,,,600,,,,,",5,5,"NO ANSWER",3,,1724479280.9780,,79217365096,79116036976,79116036976,,,,,1724479280.9780,,11545 +"2024-08-24 09:01:30","""79116036976"" <79116036976>",79116036976,194,ext-queues,PJSIP/Megafon_3-00001137,Local/13@from-queue-00000a79;1,Queue,"194,tR,,,600,,,,,",20,20,ANSWERED,3,,1724479280.9780,,79217365096,79116036976,79116036976,,,,,1724479280.9780,,11542 +"2024-08-24 09:01:30","""79116036976"" <79116036976>",79116036976,13,ext-local,Local/13@from-queue-00000a79;2,PJSIP/13-00001139,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",20,15,ANSWERED,3,,1724479290.9784,,,79116036976,79116036976,,,,external-13-79116036976-20240824-090131-1724479290.9784.wav,1724479280.9780,,11541 +"2024-08-24 09:01:30","""79116036976"" <79116036976>",79116036976,10,ext-local,Local/10@from-queue-00000a7a;2,PJSIP/10-0000113a,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724479290.9786,,,79116036976,79116036976,,,,external-10-79116036976-20240824-090131-1724479290.9786.wav,1724479280.9780,,11544 +"2024-08-24 09:01:30","""79116036976"" <79116036976>",79116036976,12,ext-local,Local/12@from-queue-00000a78;2,PJSIP/12-00001138,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",5,0,"NO ANSWER",3,,1724479290.9782,,,79116036976,79116036976,,,,external-12-79116036976-20240824-090130-1724479290.9782.wav,1724479280.9780,,11539 +"2024-08-24 09:01:20","""79116036976"" <79116036976>",79116036976,194,ext-queues,PJSIP/Megafon_3-00001137,Local/12@from-queue-00000a78;1,Queue,"194,tR,,,600,,,,,",16,16,"NO ANSWER",3,,1724479280.9780,,79217365096,79116036976,79116036976,,,,,1724479280.9780,,11537 +"2024-08-24 08:57:39","""79062022510"" <79062022510>",79062022510,194,ext-queues,PJSIP/Megafon_3-00001133,Local/10@from-queue-00000a77;1,Queue,"194,tR,,,600,,,,,",10,10,"NO ANSWER",3,,1724479049.9770,,79217365096,79062022510,79062022510,,,,,1724479049.9770,,11533 +"2024-08-24 08:57:39","""79062022510"" <79062022510>",79062022510,194,ext-queues,PJSIP/Megafon_3-00001133,Local/13@from-queue-00000a76;1,Queue,"194,tR,,,600,,,,,",26,26,ANSWERED,3,,1724479049.9770,,79217365096,79062022510,79062022510,,,,,1724479049.9770,,11530 +"2024-08-24 08:57:39","""79062022510"" <79062022510>",79062022510,13,ext-local,Local/13@from-queue-00000a76;2,PJSIP/13-00001134,Dial,"PJSIP/13/sip:13@192.168.75.12:5070,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",26,15,ANSWERED,3,,1724479059.9774,,,79062022510,79062022510,,,,external-13-79062022510-20240824-085739-1724479059.9774.wav,1724479049.9770,,11529 +"2024-08-24 08:57:39","""79062022510"" <79062022510>",79062022510,12,ext-local,Local/12@from-queue-00000a75;2,PJSIP/12-00001135,Dial,"PJSIP/12/sip:12@192.168.75.12:5060,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",10,0,"NO ANSWER",3,,1724479059.9772,,,79062022510,79062022510,,,,external-12-79062022510-20240824-085740-1724479059.9772.wav,1724479049.9770,,11527 +"2024-08-24 08:57:39","""79062022510"" <79062022510>",79062022510,10,ext-local,Local/10@from-queue-00000a77;2,PJSIP/10-00001136,Dial,"PJSIP/10/sip:10@192.168.75.12:5080,,HhTtrM(auto-blkvm)b(func-apply-sipheaders^s",10,0,"NO ANSWER",3,,1724479059.9776,,,79062022510,79062022510,,,,external-10-79062022510-20240824-085740-1724479059.9776.wav,1724479049.9770,,11532 +"2024-08-24 08:57:29","""79062022510"" <79062022510>",79062022510,194,ext-queues,PJSIP/Megafon_3-00001133,Local/12@from-queue-00000a75;1,Queue,"194,tR,,,600,,,,,",21,21,"NO ANSWER",3,,1724479049.9770,,79217365096,79062022510,79062022510,,,,,1724479049.9770,,11525 +"2024-08-24 08:25:09","""79211705192"" <79211705192>",79211705192,10,play-system-recording,PJSIP/Megafon_3-00001132,,Hangup,,19,19,ANSWERED,3,,1724477109.9769,,79217365096,,,,,,,1724477109.9769,,11524 +"2024-08-24 08:14:40","""79658088588"" <79658088588>",79658088588,10,play-system-recording,PJSIP/Megafon_3-00001131,,Playback,custom/Work_out,16,16,ANSWERED,3,,1724476480.9768,,79217365096,,,,,,,1724476480.9768,,11523 +"2024-08-24 08:05:06","""79217314696"" <79217314696>",79217314696,10,play-system-recording,PJSIP/rt_769402-00001130,,Playback,custom/Work_out,6,5,ANSWERED,3,,1724475906.9767,,78162769402,,,,,,,1724475906.9767,,11522 +"2024-08-24 08:02:02","""79217314696"" <79217314696>",79217314696,10,play-system-recording,PJSIP/rt_769402-0000112f,,Playback,custom/Work_out,6,5,ANSWERED,3,,1724475722.9766,,78162769402,,,,,,,1724475722.9766,,11521 diff --git a/Check/log/data/.DS_Store b/Check/log/data/.DS_Store new file mode 100644 index 0000000..df2c6f3 Binary files /dev/null and b/Check/log/data/.DS_Store differ diff --git a/Check/log/file.log b/Check/log/file.log new file mode 100644 index 0000000..d61824e --- /dev/null +++ b/Check/log/file.log @@ -0,0 +1,558637 @@ + + +00:16:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T00 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +00:16:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T00 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE44-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +00:35:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T00 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +00:35:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T00 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +00:55:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T00 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +00:55:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T00 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +01:14:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T01 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +01:14:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T01 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +01:34:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T01 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +01:34:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T01 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +01:53:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T01 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE44-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +01:53:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T01 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE44-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +02:13:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T02 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +02:32:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T02 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +02:32:42 + +Response: Success +Ping: Pong +Timestamp: 1724455962.696658 +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T02 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +02:52:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T02 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +02:52:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T02 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +03:11:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T03 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +03:11:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T03 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +03:31:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T03 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +03:31:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T03 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +03:50:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T03 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +03:50:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T03 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +04:10:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T04 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +04:10:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T04 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE44-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +04:29:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T04 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +04:29:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T04 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +04:49:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T04 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +04:49:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T04 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +05:08:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T05 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +05:08:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T05 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +05:28:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T05 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +05:28:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T05 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +06:07:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T06 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +06:07:12 + +Response: Success +Ping: Pong +Timestamp: 1724468832.753430 +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T06 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE44-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +06:26:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T06 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +06:26:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T06 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +06:46:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T06 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +06:46:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T06 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +07:05:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T07 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +07:05:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T07 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +07:25:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T07 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +07:25:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T07 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE44-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +07:44:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T07 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +07:44:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T07 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +08:02:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +08:02:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 172 +Linkedid: 1724475722.9766 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +08:02:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 172447572 +Linkedid: 1724475722.9766 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-080202 +Variable: __YEAR +Value: 2024 + + +08:02:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +08:02:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +08:02:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +08:02:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Variable: __FROM_DID +Value: 78162769402 +Extension: 78162769402 +Application: Set +AppData: returnhere=1 + + +08:02:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 7 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Extension: 78162769402 +Application: Set +AppData: CDR(did)=78162769402 +Variable: GOSUB_RETVAL +Value: + + +08:02:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +08:02:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timecond +Exten: 2 +Priority: 2 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +08:02:03 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +CommandId: 543129565 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +08:02:03 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +CommandId: 318959284 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +08:02:03 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +CommandId: 644563077 +Command: EXEC Goto falsestate +ResultCode: 200 +Result: Success + + +08:02:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 1 +Uniqueid: 1724475722.9766 +Linkedid: 17244 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?play-system-recording,10,1 + + +08:02:03 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 1 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Device: PJSIP/rt_769402 +State: INUSE + + +08:02:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +08:02:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000112f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001500;avgrxjitter=000.000819;stdevrxjitter=000.000232;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Cause: 16 +Source: 79217314696 +Destination: 10 +DestinationContext: play-system-recording +CallerID: "79217314696" <79217314696> +DestinationChannel: +LastApplication: Playback +LastData: custom/Work_out +StartTime: 2024-08-24 08 +AnswerTime: 2024-08-24 08 +EndTime: 2024-08-24 08 +Duration: 6 +BillableSeconds: 5 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724475722.9766 +UserField: + + +08:02:09 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/RT_769402 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724475722.9766 +Linkedid: 1724475722.9766 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9791 + + +08:04:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T08 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +08:04:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T08 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +08:05:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +08:05:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 172 +Linkedid: 1724475906.9767 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +08:05:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 172447590 +Linkedid: 1724475906.9767 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-080506 +Variable: __YEAR +Value: 2024 + + +08:05:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +08:05:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +08:05:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +08:05:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Variable: __FROM_DID +Value: 78162769402 +Extension: 78162769402 +Application: Set +AppData: returnhere=1 + + +08:05:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 7 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Extension: 78162769402 +Application: Set +AppData: CDR(did)=78162769402 +Variable: GOSUB_RETVAL +Value: + + +08:05:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +08:05:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timecond +Exten: 2 +Priority: 2 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +08:05:07 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +CommandId: 1881627521 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +08:05:07 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +CommandId: 26605647 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +08:05:07 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +CommandId: 1926802032 +Command: EXEC Goto falsestate +ResultCode: 200 +Result: Success + + +08:05:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 1 +Uniqueid: 1724475906.9767 +Linkedid: 17244 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?play-system-recording,10,1 + + +08:05:07 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 1 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Device: PJSIP/rt_769402 +State: INUSE + + +08:05:13 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000248; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 + + +08:05:13 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/rt_769402-00001130 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217314696 +CallerIDName: 79217314696 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724475906.9767 +Linkedid: 1724475906.9767 +Cause: 0 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000248; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause-txt: Unknown +Source: 79217314696 +Destination: 10 + + +08:05:13 + +Event: DeviceStateChange +Privilege: call,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/RT_769402 +ActionID: 9792 +Device: PJSIP/rt_769402 +State: NOT_INUSE + + +08:14:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +08:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +08:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-081440 +Variable: __YEAR +Value: 2024 + + +08:14:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +08:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +08:14:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +08:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +08:14:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 796 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +08:14:41 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +08:14:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +08:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 19 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +08:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: AGI +AppData: agi + + +08:14:42 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +CommandId: 674400570 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +08:14:42 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +CommandId: 1519352961 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +08:14:43 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +CommandId: 1554525704 +Command: VERBOSE "Goto +ResultCode: 200 +Result: Success + + +08:14:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 7 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +CommandId: 626453250 +Command: EXEC Goto falsestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: DEVICE_STATE(Custom + + +08:14:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Extension: 10 +Application: Playback +AppData: custom/Work_out + + +08:14:57 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000084; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; + + +08:14:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001131 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000084; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000 +Cause: 16 + + +08:14:57 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724476480.9768 +Linkedid: 1724476480.9768 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 9793 + + +08:23:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T08 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +08:23:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T08 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +08:25:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 0?initialize + + +08:25:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __YEAR +Value: 2024 + + +08:25:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +08:25:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: FROMEXTEN +Value: 79211705192 + + +08:25:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +08:25:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 + + +08:25:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +08:25:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 12 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +08:25:09 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Device: PJSIP/Megafon_3 +State: INUSE + + +08:25:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +08:25:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 22 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(num-pres)=allowed_not_screened + + +08:25:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Extension: 2 +Application: AGI +AppData: agi + + +08:25:11 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +CommandId: 2119616983 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +08:25:11 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +CommandId: 1072503016 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +08:25:11 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +CommandId: 2017526559 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +08:25:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 6 +Uniqueid: 1724477109.9769 +Linkedid: 172447 +CommandId: 1670340619 +Command: EXEC Goto falsestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +08:25:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Variable: DB_RESULT +Value: +Extension: 10 +Application: Playback +AppData: custom/Work_out + + +08:25:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 3 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Extension: 10 +Application: Hangup +AppData: + + +08:25:28 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001132 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 3 +Uniqueid: 1724477109.9769 +Linkedid: 1724477109.9769 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000147; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Source: 79211705192 +Destination: 10 +DestinationContext: play-system-recording +CallerID: "79211705192" <79211705192> +DestinationChannel: +LastApplication: Hangup +LastData: +StartTime: 2024-08-24 08 +AnswerTime: 2024-08-24 08 +EndTime: 2024-08-24 08 +Duration: 19 +BillableSeconds: 19 + + +08:25:28 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/MEGAFON_3 +ActionID: 9794 + + +08:43:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T08 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +08:43:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T08 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +08:45:07 + +Event: DeviceStateChange +Privilege: call,all +Device: Custom +State: NOT_INUSE + + +08:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 0?initialize + + +08:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __YEAR +Value: 2024 + + +08:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +08:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: FROMEXTEN +Value: 79062022510 + + +08:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +08:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 + + +08:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +08:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 12 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +08:57:29 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Device: PJSIP/Megafon_3 +State: INUSE + + +08:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +08:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +08:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 2 +Application: AGI +AppData: agi + + +08:57:30 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +CommandId: 1237359418 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +08:57:30 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +CommandId: 498626230 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +08:57:31 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +CommandId: 731298324 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +08:57:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724479049.9770 +Linkedid: 1724479 +CommandId: 749159952 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +08:57:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: s +Application: Se +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: +Linkedid: 1724479049.9770 +Variable: AMPUSER +Value: 79062022510 +Extension: s +Application: Set +AppData: AMPUSER=79062022510 + + +08:57:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +08:57:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +08:57:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 4 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +08:57:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=do +Variable: VQ_AINFO +Value: + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +08:57:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +08:57:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +08:57:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +08:57:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +08:57:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 43 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 194 +Application: Set +AppData: QAANNOUNCE= + + +08:57:40 + +Event: VarSet +Privilege: dial +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 49 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 194 +Application: Set +AppData: QMAXWAIT=600 +Variable: VQ_MOH +Value: + + +08:57:40 + +Event: +Privilege: call,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Variable: QUEUEJOINTIME +Value: 1724479059 +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479059.9771 +Linkedid: 1724479049.9770 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479059.9771 +Linkedid: 1724479049.9770 +Variable: __MOHCLASS +Value: + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: __TTL +Value: 64 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: __MONTH +Value: 08 + + +08:57:40 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a75;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479059.9771 +LocalOneLinkedid: 1724479049.9770 +LocalTwoChannel: Local/12@from-queue-00000a75;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79062022510 +LocalTwoCallerIDName: 79062022510 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479059.9772 +LocalTwoLinkedid: 1724479049.9770 +LocalOptimization: No +DestChannel: +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479059.9771 +DestLinkedid: 1724479049.9770 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 7921736 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479059.9773 +Linkedid: 1724479049.9770 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479059.9773 +Linkedid: 1724479049.9770 +Variable: __RINGINGSENT +Value: TRUE + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479059.9773 +Linkedid: 1724479049.9770 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479059.9774 +Linkedid: 17 +Variable: __FROMQUEUEEXTEN +Value: 79062022510 + + +08:57:40 + +Event: VarSet +Privilege: d +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: __YEAR +Value: 2024 + + +08:57:40 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a76;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479059.9773 +LocalOneLinkedid: 1724479049.9770 +LocalTwoChannel: Local/13@from-queue-00000a76;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79062022510 +LocalTwoCallerIDName: 79062022510 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479059.9774 +LocalTwoLinkedid: 1724479049.9770 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000a76;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479059.9773 +DestLinkedid: 1724479049.9770 +Queue: 194 +Interface: Local/13@from-queue/n + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +DestChannel: Local/13@from-queue-00000a76;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479059.9773 +DestLinkedid: 1724479049.9770 +DialString: Local/13@from-queue/n +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: __FROMQ +Value: true + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_EXTEN +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a76;2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: CHANEXTEN +Value: 13 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7906 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: s +Application: Set +AppData: CALLERID(name)=79062022510 +Variable: MACRO_DEPTH +Value: 2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: __EXTTOCALL +Value: 13 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: LOCAL(ARG2) +Value: 13 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724479059.9774 +Linkedid: 1724479 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724479059 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724479059.9774 +Linkedid: 1724479 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 790620 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 11 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: MACRO_DEPTH +Value: 1 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79062022510) +Variable: MACRO_DEPTH +Value: 1 + + +08:57:40 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-13-79062022510-20240824-085739-1724479059.9774.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79062022510-20240824-085739-1724479059.9774.wav,abi(), + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: recordcheck +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 +Variable: MACRO_EXTEN +Value: s + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-di +Exten: s +Priority: 6 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 790620225 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: DB_RESULT +Value: PJSIP/13 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip +Variable: DSTRING +Value: PJSIP/13/sip + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecI +AppData: 1?Set(ALERT_INFO=) + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: ANSWEREDTIME +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479059.9775 +Linkedid: 1724479049.9770 +Variable: PROGRESSTIME_MS +Value: +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 7 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479059.9775 +Linkedid: 1724479049.9770 +Variable: __TTL +Value: 64 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479059.9775 +Linkedid: 1724479049.9770 +Variable: __YEAR +Value: 2024 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: __RVOL_MODE +Value: dontcare + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: __REVERSAL_REJECT +Value: FALSE + + +08:57:40 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +LocalOneChannel: Local/10@from-queue-00000a77;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479059.9775 +LocalOneLinkedid: 1724479049.9770 +LocalTwoChannel: Local/10@from-queue-00000a77;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79062022510 +LocalTwoCallerIDName: 79062022510 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479059.9776 +LocalTwoLinkedid: 1724479049.9770 +Context: from-queue +Exten: 12 +LocalOptimization: No +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Priority: 2 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +DestChannel: Local/10@from-queue-00000a77;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479059.9775 +DestLinkedid: 1724479049.9770 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 12 +Application: Set +AppData: QAGENT=12 +Variable: QAGENT +Value: 12 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001134 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000a76;2 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001134 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Variable: __PICKUPMARK +Value: 13 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001134 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Variable: __NODEST +Value: 194 + + +08:57:40 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-00001134 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: from-i +Exten: 13 +Priority: 1 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001134 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG3 +Value: 0 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790620225 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000a75;2 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79062022510 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79062022510 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724479059. +Linkedid: 1724479049.9770 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-chec +Exten: s +Priority: 1 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: __FROMEXTEN +Value: 79062022510 +Extension: s +Application: Set +AppData: __FROMEXTEN=79062022510 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79062022510 and 12 +Variable: MACRO_DEPTH +Value: 1 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79062022510-20240824-085740-1724479059.9772 +Variable: __CALLFILENAME +Value: external-12 + + +08:57:40 + +Event: VarSet +Privilege: dialpla +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000a75;2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: ARG3 +Value: 12 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Extension: 10 +Application: Set +AppData: QAGENT=10 +Variable: MACRO_DEPTH +Value: 2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: DB_RESULT +Value: 0 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 17244 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: dstring +Priority: 3 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-lo +Exten: dstring +Priority: 7 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: THISDIAL +Value: PJSIP/12 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000a77;2 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79062022510 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79062022510 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: THISDIAL +Value: PJSIP/12/sip +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstri +Priority: 16 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +08:57:40 + +Event: Newexten +Privilege: dialplan, +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 55 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: ARG1 +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten- +Exten: s +Priority: 3 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +08:57:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724479060 + + +08:57:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-085740 + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,e + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub- +Exten: exten +Priority: 3 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7906202251 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79062022510) + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79062022510-20240824-085740-1724479059.9776.wav,abi(), + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recor +Priority: 23 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001135 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-inter +Exten: s +Priority: 1 +Uniqueid: 1724479060.9778 +Linkedid: 1724479049.9770 +DestChannel: PJSIP/13-00001134 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479060.9777 +DestLinkedid: 1724479049.9770 +DialString: 13/sip +Device: Local/13@from-queue +State: INUSE +Variable: __REC_STATUS +Value: RECORDING + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001135 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479060.9778 +Linkedid: 172447 +Variable: __DAY +Value: 24 + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001135 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479060.9778 +Linkedid: 1724479049.9770 +Variable: __NODEST +Value: 194 + + +08:57:41 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-00001135 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724479060.9778 +Linkedid: 1724479049.9770 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001135 +ChannelState: 0 +ChannelStateDesc: Do +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724479060.9778 +Linkedid: 1724479049.9770 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Extension: recordcheck +Application: Return +AppData: +Variable: ARGC +Value: +DestChannel: Local/13@from-queue-00000a76;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479059.9773 +DestLinkedid: 1724479049.9770 +DialStatus: RINGING + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: ARG3 +Value: 10 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: DB_RESULT +Value: 10 +Extension: dstring +Application: Set +AppData: DEVIC + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 7 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724479059.9776 +Linkedid: 1724479 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Retu +AppData: DB(CALLTRACE/10)=79062022510 + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +08:57:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: PROGRESSTIME +Value: + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001136 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479060.9779 +Linkedid: 1724479049.9770 +Variable: __REC_POLICY_MODE +Value: YES + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001136 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479060.9779 +Linkedid: 1724479049.9770 +Variable: __RINGTIMER +Value: 60 + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001136 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479060.9779 +Linkedid: 1724479049.9770 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +08:57:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001136 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724479060.9779 +Linkedid: 1724479049.9770 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +08:57:41 + +Event: DialBegin +Privilege: call,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479060.9779 +Linkedid: 1724479049.9770 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +08:57:41 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +DestChannel: Local/12@from +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479059.9775 +DestLinkedid: 1724479049.9770 +DialString: 10/sip +DialStatus: RINGING + + +08:57:41 + +Event: DeviceStateChange +Privilege: call,all +Device: Local/10@from-queue +State: INUSE + + +08:57:43 + +Event: DialState +Privilege: call,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 408 +LastCall: 1724428990 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 3575 +DestChannel: PJSIP/13-00001134 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479060.9777 +DestLinkedid: 1724479049.9770 +DialStatus: RINGING + + +08:57:43 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3819 +DestChannel: Local/12@from-queue-00000a75;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479059.9771 +DestLinkedid: 1724479049.977 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 331 +LastCall: 1724424486 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +08:57:44 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 4409 +Device: PJSIP/10 +State: RINGING +DestChannel: Local/10@from-queue-00000a77;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479059.9775 +DestLinkedid: 1724479049.9770 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 283 +LastCall: 1724428399 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001134 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479060.9777 +Linkedid: 1724479 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/13 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 408 +LastCall: 1724428990 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/13-00001134 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +08:57:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001134 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +08:57:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001134 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001133)= + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001134 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +08:57:50 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000a76;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479059.9773 +Linkedid: 1724479049.9770 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-00001134 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724479060.9777 +DestLinkedid: 1724479049.9770 +DialStatus: ANSWER +CID-CallingPres: 0 (Presentation + + +08:57:50 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000a75;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062022510 +ConnectedLineName: 7 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +DestChannel: Local/12@from-queue-00000a75;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479059.9771 +DestLinkedid: 1724479049.9770 +DialStatus: CANCEL +Cause: 26 + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/12-00001135 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479060.9778 +DestLinkedid: 1724479049.9770 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 + + +08:57:50 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +DestChannel: Local/13@from-queue-00000a76;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479059.9773 +DestLinkedid: 1724479049.9770 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 11 +RingTime: 10 +Variable: MACRO_CONTEXT +Value: ext-local +Hint: PJSIP/10&Custom + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: a24c889d-04af-491b-8ff2-dcd897cc71cb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: ARG5 +Value: +DestChannel: PJSIP/10-00001136 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79062022510 +DestConnectedLineName: 79062022510 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479060.9779 +DestLinkedid: 1724479049.9770 +DialStatus: CANCEL +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790620 +CallerIDName: 79062022510 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +BridgeUniqueid: a24c889d-04af-491b-8ff2-dcd897cc71cb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Extension: h +Application: Macro +AppData: hangupcall, +Source: 79062022510 +Destination: 10 +DestinationContext: ext-local +CallerID: "79062022510" <79062022510> +DestinationChannel: PJSIP/10-00001136 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 08 +AnswerTime: +EndTime: 2024-08-24 08 +Duration: 10 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479059.9776 +UserField: + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 790 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: ARG3 +Value: 0 + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: ARG5 +Value: +Extension: s +Application: GotoIf +AppData: 1?theend + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7906202 +CallerIDName: 79062022510 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 26 +Cause-txt: Answered elsewhere +Extension: h +Application: Macro +AppData: hangupcall, + + +08:57:50 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/12 +State: NOT_INUSE +BridgeUniqueid: a24c889d-04af-491b-8ff2-dcd897cc71cb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a77;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479059.9776 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 283 +LastCall: 1724428399 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +08:57:50 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/13-00001134 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Variable: MACRO_PRIORITY +Value: 1 +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 331 +LastCall: 1724424486 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9796 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: f488864c-f02c-40b0-8414-2a1b08f8f4e0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +08:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a75;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9799 +Source: 79062022510 +Destination: 12 +DestinationContext: ext-local +CallerID: "79062022510" <79062022510> +DestinationChannel: PJSIP/12-00001135 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 08 +AnswerTime: +EndTime: 2024-08-24 08 +Duration: 10 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479059.9772 +UserField: +Extension: s +Application: Hangup +AppData: + + +08:57:50 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479059.9772 +Linkedid: 1724479049.9770 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9800 + + +08:58:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001134 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +08:58:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: BRIDGEPEER +Value: + + +08:58:06 + +Event: BridgeLeave +Privilege: call,all +BridgeUniqueid: f488864c-f02c-40b0-8414-2a1b08f8f4e0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: PJSIP/13-00001134 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062022510 +ConnectedLineName: 79062022510 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479060.9777 +Linkedid: 1724479049.9770 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000179; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing + + +08:58:06 + +Event: VarSet +Privilege: dialplan +BridgeUniqueid: f488864c-f02c-40b0-8414-2a1b08f8f4e0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: ARG2 +Value: 13 + + +08:58:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: ARG5 +Value: +Device: PJSIP/13 +State: NOT_INUSE + + +08:58:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +08:58:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a76;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479059.9774 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 409 +LastCall: 1724479086 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +08:58:06 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: BRIDGEPEER +Value: +Cause: 16 +BridgeUniqueid: a24c889d-04af-491b-8ff2-dcd897cc71cb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +DestChannel: Local/13@from-queue-00000a76;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062022510 + + +08:58:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/13@from-queue +State: NOT_INUSE +Source: 79062022510 +Destination: 13 +DestinationContext: ext-local +CallerID: "79062022510" <79062022510> +DestinationChannel: PJSIP/13-00001134 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 08 +AnswerTime: 2024-08-24 08 +EndTime: 2024-08-24 08 +Duration: 26 +BillableSeconds: 15 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479059.9774 +UserField: +BridgeUniqueid: a24c889d-04af-491b-8ff2-dcd897cc71cb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_IN_HANGUP +Value: 1 + + +08:58:06 + +Event: Newexten +Privilege: dialplan,all +Channel: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9801 + + +08:58:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +08:58:06 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001133 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062022510 +CallerIDName: 79062022510 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479049.9770 +Linkedid: 1724479049.9770 +Variable: RTPAUDIOQOSMES +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9804 +Source: 79062022510 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79062022510" <79062022510> +DestinationChannel: Local/10@from-queue-00000a77;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 08 +AnswerTime: 2024-08-24 08 +EndTime: 2024-08-24 08 +Duration: 10 +BillableSeconds: 10 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479049.9770 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE + + +09:01:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: SIPDOMAIN +Value: 192.168.75.10 +Extension: 79217365096 +Application: Set +AppData: __DIRECTION= + + +09:01:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: __REC_STATUS +Value: INITIALIZED + + +09:01:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: __TIMESTR +Value: 20240824-090120 +Extension: s +Application: Se +AppData: __TIMESTR=20240824-090120 + + +09:01:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: GotoIf +AppData: 2?checkaction + + +09:01:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG3) +Value: 79217365096 + + +09:01:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 5 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: in +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +09:01:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: returnhere +Value: 1 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:01:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911603697 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 8 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: GotoIf +AppData: 0? + + +09:01:20 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Extension: 79217365096 +Application: Answer +AppData: +Variable: __RINGINGSENT +Value: TRUE +Device: PJSIP/Megafon_3 +State: INUSE + + +09:01:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:01:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:01:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: 2 +Application: AGI +AppData: agi + + +09:01:21 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +CommandId: 1301074278 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:01:21 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +CommandId: 299225688 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:01:22 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +CommandId: 1986739340 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:01:22 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +CommandId: 505359837 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: DB_RESULT +Value: +Extension: 194 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +09:01:22 + +Event: VarSet +Privilege: dialpl +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +09:01:22 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: CHANEXTEN +Value: Megafon_3-00001137 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001137 + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001137 +Variable: MACRO_DEPTH +Value: 1 + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +09:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 172447 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 17244792 +Linkedid: 1724479280.9780 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +09:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 53 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: CDR(cnum)=79116036976 +Variable: MACRO_DEPTH +Value: 1 + + +09:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79116036976 + + +09:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001137)=TRUE + + +09:01:22 + +Event: Newexten +Privilege: dialplan, +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: MacroExit +AppData: + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: VQ_CIDPP +Value: +Extension: 194 +Application: Set +AppData: VQ_CIDPP= + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: QJOINMSG +Value: custom/Privet_23_08 + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 20 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: VQ_RETRY +Value: +Extension: 194 +Application: Set +AppData: VQ_RETRY= + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 31 +Uniqueid: 172447 +Linkedid: 1724479280.9780 +Variable: VQ_POSITION +Value: +Extension: 194 +Application: Set +AppData: VQ_POSITION= + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against dontcare +Variable: LOCAL(ARGC) +Value: 3 + + +09:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: s +Application: Return +AppData: +Variable: ARG3 +Value: + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ex +Exten: 194 +Priority: 35 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: GotoIf +AppData: 0?QVQANNOUNCE + + +09:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +09:01:31 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724479290 +Variable: QUEUEJOINTIME +Value: 1724479290 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: RINGING +Channel: Local/12@from-queue-00000a78;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479290.9781 +Linkedid: 1724479280.9780 +Queue: 194 +Position: 1 +Count: 1 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479290.9781 +Linkedid: 1724479280.9780 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479290.9781 +Linkedid: 1724479280.9780 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: __FROM_DID +Value: 79217365096 + + +09:01:31 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a78;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479290.9781 +LocalOneLinkedid: 1724479280.9780 +LocalTwoChannel: Local/12@from-queue-00000a78;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116036976 +LocalTwoCallerIDName: 79116036976 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479290.9782 +LocalTwoLinkedid: 17 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue- +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479290.9783 +Linkedid: 1724479280.9780 +DestChannel: Local/12@from-queue-00000a78;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479290.9781 +DestLinkedid: 1724479280.9780 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;1 +ChannelState: 0 +ChannelStateDesc: Dow +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479290.9783 +Linkedid: 1724479280.9780 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479290.9783 +Linkedid: 1724479280.9780 +Variable: __DAY +Value: 24 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 17 +Linkedid: 1724479280.9780 +Variable: __NODEST +Value: 194 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280. +Variable: __MOHCLASS +Value: + + +09:01:31 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a79;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479290.9783 +LocalOneLinkedid: 1724479280.9780 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@ +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479290.9785 +Linkedid: 1724479280.9780 +DestChannel: Local/13@from-queue-00000a79;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479290.9783 +DestLinkedid: 1724479280.9780 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QC_CONFIRM +Value: 0 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479290.9785 +Linkedid: 1724479280.9780 +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479290.9785 +Linkedid: 1724479280.9780 +Variable: __MONTH +Value: 08 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: __QCONTEXT +Value: 0 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: __RINGINGSENT +Value: TRUE + + +09:01:31 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +DestChannel: Local/10@from-queue-00000a7a;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479290.9785 +DestLinkedid: 1724479280.9780 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 12 +Application: Set +AppData: __FROMQ=true +Variable: _ +Value: 12 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG3 +Value: 0 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: user-callerid, + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79116036976 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 29 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:01:31 + +Event: Newexten +Privilege: d +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79116036976 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: RingGroupM +Variable: MACRO_DEPTH +Value: 1 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: RT +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: __FROMEXTEN +Value: 79116036976 +Extension: s +Application: Set +AppData: __FROMEXTEN=79116036976 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 17244 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 7 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: __CALLFILENAME +Value: external-12-79116036976-20240824-090130-1724479290.9782 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79116036976-20240824-090130-1724479290.9782 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000a78;2 +Variable: MACRO_DEPTH +Value: 1 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: ARG3 +Value: 12 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 791160369 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: DB_RESULT +Value: 12 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +09:01:31 + +Event: +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +09:01:31 + +Event: Newexten +Privilege: dialpla +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9782 +Linkedid: 1724 +Variable: PROGRESSTIME +Value: + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: DB_RESULT +Value: EXTENSION + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a79;2 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79116036976 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 172447 +Linkedid: 1724479280.9780 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: MACRO_CONTEXT +Value: ext-local + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: CHANCONTEXT +Value: from-queue-00000a7a;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a7a;2 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000a7a;2 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479291.9787 +Linkedid: 1724479280.9780 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: DIALEDPEERNUMBER +Value: 12/sip + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001138 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479291.9787 +Linkedid: 1724479280.9780 +Variable: __FROMEXTEN +Value: 79116036976 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001138 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 792173650 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724479291.9787 +Linkedid: 1724479280.9780 +Variable: __TTL +Value: 63 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001138 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724479291.9787 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: CDR(c +Variable: func-apply-sipheaders_s_4 +Value: + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACR +Value: novm + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724479290.9784 +Linkedid: 1724479 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479290.97 +Linkedid: 1724479280.9780 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724479291 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090131 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: DB_RESULT +Value: yes + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116036976) + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79116036976-20240824-090131-1724479290.9784.wav,abi(), + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +DestChannel: Local/12@from-queue-00000a78;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479290.9781 +DestLinkedid: 1724479280.9780 +DialString: 12/sip +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 172447 +Linkedid: 1724479280.9780 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479290. +Linkedid: 1724479280.9780 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724479290. +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-o +Exten: s +Priority: 10 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DB_RESULT +Value: 13 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: 0?docheck + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: GOSUB_RETVAL +Value: +Extension: dstring +Application: Return +AppData: + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79116036976 +Variable: MACRO_DEPTH +Value: 2 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 172447 +Linkedid: 1724479280.9780 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) +Variable: __PICKUPMARK +Value: 10 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: RT +Value: +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +09:01:31 + +Event: VarSet +Privilege: dialp +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: su +Exten: s +Priority: 13 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-recor +Exten: recordcheck +Priority: 2 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79116036976-20240824-090131-1724479290.9786.wav,abi(), + + +09:01:31 + +Event: VarSet +Privilege: di +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: +Linkedid: 1724479280.9780 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: DIALEDPEERNAME +Value: + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: PROGRESSTIME_MS +Value: + + +09:01:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:01:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +09:01:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:01:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911603697 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001139 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Variable: __CWIGNORE +Value: TRUE +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001139 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Variable: __TIMESTR +Value: 20240824-090131 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001139 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 5 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: LOOPCNT +Value: 1 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1 +Linkedid: 1724479280.9780 +Variable: __DIRECTION +Value: +Extension: dstring +Application: Set +AppData: ITER=1 + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001139 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: TECH=PJSIP +Variable: MACRO_DEPTH +Value: 2 + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001139 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: sipkey +Value: + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: THISDIAL +Value: PJSI +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:01:32 + +Event: VarSet +Privilege: dial +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:01:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724479290.97 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 7911603697 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRI +Value: macro-dial-one + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724479280.9780 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +09:01:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000113a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-inter +Exten: s +Priority: 1 +Uniqueid: 1724479291.9789 +Linkedid: 1724479280.9780 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000a7a;2 + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000113a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479291.9789 +Linkedid: 1724479280.9780 +Variable: __EXTT +Value: 10 + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000113a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479291.9789 +Linkedid: 1724479280.9780 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001137 + + +09:01:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000113a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 7911 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724479291.9789 +Linkedid: 1724479280.9780 +Variable: __DIRECTION +Value: +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +09:01:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000113a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724479291.9789 +Linkedid: 1724479280.9780 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: + + +09:01:32 + +Event: DialBegin +Privilege: call,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/13-00001139 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479290.9785 +DestLinkedid: 1724479280.9780 +DialString: 10/sip +Device: Local/10@from-queue +State: INUSE +DialStatus: RINGING + + +09:01:32 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +DestChannel: Local/13@from-queue-00000a79;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479290.9783 +DestLinkedid: 1724479280.9780 +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE + + +09:01:33 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/12-00001138 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724479291.9787 +Linkedid: 1724479280.9780 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing + + +09:01:33 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: RINGTIME_MS +Value: 2908 +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 331 +LastCall: 1724424486 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: Local/12@from-queue-00000a78;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479290.9781 +DestLinkedid: 1724479280.9780 +DialStatus: RINGING + + +09:01:34 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-00001139 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 409 +LastCall: 1724479086 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:01:34 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: RINGTIME_MS +Value: 3527 +DestChannel: Local/13@from-queue-00000a79;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479290.9783 +DestLinkedid: 1724479280.9780 +DialStatus: RINGING + + +09:01:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000113a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724479291.9789 +Linkedid: 1724479280.9780 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +09:01:35 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: RINGTIME_MS +Value: 4110 +DestChannel: Local/10@from-queue-00000a7a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479290.9785 +DestLinkedid: 1724479280.9780 +DialStatus: RINGING +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 283 +LastCall: 1724428399 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001139 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +09:01:36 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/13 +State: INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 409 +LastCall: 1724479086 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/13-00001139 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +09:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001139 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 7911603697 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001139 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: r +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001137)= + + +09:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001139 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +09:01:36 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-queue-00000a79;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +DestChannel: PJSIP/13-00001139 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724479291.9788 +DestLinkedid: 1724479280.9780 +DialStatus: ANSWER +BridgeUniqueid: ba8ee8ac-c4bd-41ee-88a4-7ebb3b8feb15 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:01:36 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/12@from-queue-00000a78;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479290.9781 +DestLinkedid: 1724479280.9780 +DialStatus: CANCEL + + +09:01:36 + +Event: DialEnd +Privilege: call,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9782 +Linkedid: 17244792 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000a7a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479290.9785 +DestLinkedid: 1724479280.9780 +DialStatus: CANCEL +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 + + +09:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280 +Variable: ARG3 +Value: 0 +DestChannel: Local/13@from-queue-00000a79;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479290.9783 +DestLinkedid: 1724479280.9780 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 6 +RingTime: 5 + + +09:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_EXTEN +Value: + + +09:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Variable: MACRO_DE +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: ba8ee8ac-c4bd-41ee-88a4-7ebb3b8feb15 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: NOT_INUSE +DestChannel: PJSIP/10-0000113a +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479291.9789 +DestLinkedid: 1724479280.9780 +DialStatus: CANCEL + + +09:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: ARG2 +Value: +Source: 79116036976 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116036976" <79116036976> +DestinationChannel: PJSIP/12-00001138 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479290.9782 +UserField: + + +09:01:36 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +BridgeUniqueid: ba8ee8ac-c4bd-41ee-88a4-7ebb3b8feb15 +BridgeType: basic +BridgeTechnology: simple + + +09:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: +Linkedid: 1724479280.9780 +Variable: BRIDGEPVTCALLID +Value: 363f2779-ee9f-4e9d-ac52-39043b975933 +Cause: 26 +Cause-txt: Answered elsewhere + + +09:01:36 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/12@from-queue-00000a78;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724479290.9782 +Linkedid: 1724479280.9780 +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: edea2150-838a-4692-a141-c50270930790 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 283 +LastCall: 1724428399 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:01:36 + +Event: VarSet +Privilege: dialplan, +Channel: Local/13@from-queue-00000a79;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479290.9783 +Linkedid: 1724479280.9780 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: BRIDGEPEER +Value: PJSIP/Megafon_3-00001137 +BridgeUniqueid: edea2150-838a-4692-a141-c50270930790 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +09:01:36 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000a7a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479290.9786 +Linkedid: 1724479280.9780 +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: + + +09:01:36 + +Event: UserEvent +Privilege: user,all +Device: Local/10@from-queue +State: NOT_INUSE +AccountCode: +Source: 79116036976 +Destination: 10 +DestinationContext: ext-local +CallerID: "79116036976" <79116036976> +Channel: LOCAL/10@FROM-QUEUE +DestinationChannel: PJSIP/10-0000113a +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479290.9786 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 9810 + + +09:01:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 0?initialize + + +09:01:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __YEAR +Value: 2024 + + +09:01:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:01:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: FROMEXTEN +Value: 79116238157 + + +09:01:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:01:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 + + +09:01:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +09:01:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 12 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:01:42 + +Event: Registry +Privilege: system,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +ChannelType: PJSIP +Username: sip +Domain: sip +Status: Registered + + +09:01:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:01:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:01:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: 2 +Application: AGI +AppData: agi + + +09:01:44 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +CommandId: 753949364 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:01:44 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +CommandId: 1936528445 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:01:44 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +CommandId: 355449217 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:01:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724479302.9790 +Linkedid: 1724479 +CommandId: 337482286 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:01:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: s +Application: Se +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: +Linkedid: 1724479302.9790 +Variable: AMPUSER +Value: 79116238157 +Extension: s +Application: Set +AppData: AMPUSER=79116238157 + + +09:01:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:01:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:01:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 4 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +09:01:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=do +Variable: VQ_AINFO +Value: + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +09:01:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +09:01:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +09:01:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:01:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +09:01:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +09:01:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:01:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:01:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090146 +Variable: __YEAR +Value: 2024 + + +09:01:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:01:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:01:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:01:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:01:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:01:47 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:01:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 20 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: __CALLINGNUMPRES_SV=allowed_not_screened + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: 2 +Application: AGI +AppData: agi + + +09:01:48 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +CommandId: 1576561273 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:01:48 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +CommandId: 767088104 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:01:48 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +CommandId: 1456120748 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724479306.9791 +Linkedid: 1724479 +CommandId: 410419480 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: s +Application: Se +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: +Linkedid: 1724479306.9791 +Variable: AMPUSER +Value: 79116094059 +Extension: s +Application: Set +AppData: AMPUSER=79116094059 + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 4 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=do +Variable: VQ_AINFO +Value: + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:01:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +09:01:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +09:01:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:01:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001139 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724479291.9788 +Linkedid: 1724479280.9780 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: ba8ee8ac-c4bd-41ee-88a4-7ebb3b8feb15 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +09:01:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000118; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: ba8ee8ac-c4bd-41ee-88a4-7ebb3b8feb15 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:01:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_EXTEN +Value: 13 +Device: PJSIP/13 +State: NOT_INUSE + + +09:01:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: ARG5 +Value: +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 410 +LastCall: 1724479311 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:01:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479290.97 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:01:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9811 +Source: 79116036976 +Destination: 13 +DestinationContext: ext-local +CallerID: "79116036976" <79116036976> +DestinationChannel: PJSIP/13-00001139 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 20 +BillableSeconds: 15 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479290.9784 +UserField: + + +09:01:51 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/13@from-queue-00000a79;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479290.9784 +Linkedid: 1724479280.9780 +Variable: BRIDGEPEER +Value: +Cause: 16 +BridgeUniqueid: edea2150-838a-4692-a141-c50270930790 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing + + +09:01:51 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: edea2150-838a-4692-a141-c50270930790 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Cause: 16 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 6 +TalkTime: 15 +Reason: agent +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +09:01:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9813 + + +09:01:51 + +Event: Hangup +Privilege: call,al +Channel: PJSIP/Megafon_3-00001137 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479280.9780 +Linkedid: 1724479280.9780 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000269; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=072.292173; stdevtxmes=026.146087; +Source: 79116036976 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116036976" <79116036976> +DestinationChannel: Local/12@from-queue-00000a78;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479280.9780 +UserField: + + +09:01:51 + +Event: Cdr +Privilege: cdr,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-00001137 +ActionID: 9814 +AccountCode: +Source: 79116036976 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116036976" <79116036976> +DestinationChannel: Local/10@from-queue-00000a7a;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 5 +BillableSeconds: 5 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479280.9780 +UserField: + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Extension: 194 +Application: QueueLog +AppData: 194,1724479302.9790,NONE,DID,79217365096 + + +09:01:53 + +Event: Newexten +Privilege: dia +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:01:53 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: QUEUEJOINTIME +Value: 1724479313 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING +Queue: + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479313.9792 +Linkedid: 1724479302.9790 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479313.9792 +Linkedid: 1724479302.9790 +Variable: __RINGINGSENT +Value: TRUE + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479313.9792 +Linkedid: 1724479302.9790 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: __FROMQUEUEEXTEN +Value: 79116238157 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: __YEAR +Value: 2024 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a7b;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479313.9792 +LocalOneLinkedid: 1724479302.9790 +LocalTwoChannel: Local/12@from-queue-00000a7b;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116238157 +LocalTwoCallerIDName: 79116238157 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479313.9793 +LocalTwoLinkedid: 1724479302.9790 +LocalOptimization: No +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479313.9793 +Linkedid: 17244793 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: __FROMQ +Value: true +DestChannel: Local/12@from-queue-00000a7b;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479313.9792 +DestLinkedid: 1724479302.9790 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: Macro +AppData: e + + +09:01:53 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000a7c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479313.9794 +Linkedid: 1724479302.9790 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479313.9794 +Linkedid: 1724479302.9790 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: user-callerid, + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479313.9794 +Linkedid: 1724479302.9790 +Variable: __MOHCLASS +Value: + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302. +Variable: __TTL +Value: 64 + + +09:01:53 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: __MONTH +Value: 08 + + +09:01:53 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a7c;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479313.9794 +LocalOneLinkedid: 1724479302.9790 +LocalTwoChannel: Local/13@from-queue-00000a7c;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116238157 +LocalTwoCallerIDName: 79116238157 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479313.9795 +LocalTwoLinkedid: 1724479302.9790 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000a7c;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479313.9794 +DestLinkedid: 1724479302.9790 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479313.9796 +Linkedid: 1724479302.9790 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479313.9796 +Linkedid: 1724479302.9790 +Variable: __RINGINGSENT +Value: TRUE + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479313.9796 +Linkedid: 1724479302.9790 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: __FROMQUEUEEXTEN +Value: 79116238157 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: __YEAR +Value: 2024 + + +09:01:53 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a7d;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479313.9796 +LocalOneLinkedid: 1724479302.9790 +LocalTwoChannel: Local/10@from-queue-00000a7d;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116238157 +LocalTwoCallerIDName: 79116238157 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479313.9797 +LocalTwoLinkedid: 1724479302.9790 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000a7d;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479313.9796 +DestLinkedid: 1724479302.9790 +Queue: 194 +Interface: Local/10@from-q + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +DestChannel: Local/10@from-queue-00000a7d;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479313.9796 +DestLinkedid: 1724479302.9790 +DialString: Local/10@from-queue/n +Variable: MACRO +Value: 1724479313.9793 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479313.9793 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000a7b;2 +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 2 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: QAGENT +Value: 10 +Extension: 10 +Application: Set +AppData: __FROMQ=true + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG3 +Value: 0 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000a7d;2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: +Priority: 7 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: AMPUSER +Value: 79116238157 +Extension: s +Application: Set +AppData: AMPUSER=79116238157 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: s +Application: Set +AppData: CDR(cnam)=79116238157 +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 4 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: __FROMQ +Value: true +Extension: 13 +Application: GotoIf +AppData: 1?194,1 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: __RINGTIMER +Value: 60 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 172 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-calleri +Exten: s +Priority: 1 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479313.9795 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000a7c;2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-ca +Exten: s +Priority: 12 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79116238157 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724479313.9793 +Linkedid: 1724 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79116238157 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 791162381 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791162381 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 +Variable: MACRO_DEPTH +Value: 1 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79116238157 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79116238157 and 13 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +09:01:53 + +Event: New +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79116238157) + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:01:53 + +Event: VarSet +Privilege: dia +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Extension: recordcheck +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +09:01:53 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:01:53 + +Event: Newexten +Privilege: dialplan +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: dstring +Priority: 12 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79116238157 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(C + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724479313.9795 +Linkedid: 172447930 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: RINGTIME_MS +Value: + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистра +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Variable: __CALLFILENAME +Value: external-13-79116238157-20240824-090153-1724479313.9795 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1 +Linkedid: 1724479302.9790 +Variable: __TTL +Value: 63 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/13-0000113d + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +DestChannel: Local/13@from-queue-00000a7c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479313.9794 +DestLinkedid: 1724479302.9790 +DialString: 13/sip +DialStatus: RINGING +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Device: Local/13@from-queue +State: INUSE +Channel: Local/10@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: s +Application: Gosub +AppData: +Variable: LOCAL(ARGC) +Value: 3 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724479313 + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-rec +Exten: s +Priority: 7 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090153 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: DB_RESULT +Value: yes + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +09:01:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116238157) + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79116238157-20240824-090153-1724479313.9797.wav,abi(), + + +09:01:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordc +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: CALLTYPE +Value: external + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-re +Exten: recordcheck +Priority: 16 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479313.9793 +Linkedid: 1724 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79116238157-20240824-090153-1724479313.9793 +Variable: MACRO_DEPTH +Value: 1 + + +09:01:54 + +Event: +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000a7b;2 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 791 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:01:54 + +Event: Newexten +Privilege: dialplan,a +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: ITER +Value: 1 +Extension: dstring +Application: Set +AppData: ITER=1 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_PRIORITY +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=12) + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: +AppData: 1?skip1 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724479313.9 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 27 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=2) + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 +Variable: THISDIAL +Value: PJSIP/12 + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724479313.97 +Linkedid: 1724479302.9790 +Extension: dstring +Application: NoOp +AppData: Debug +Variable: MACRO_DEPTH +Value: 2 + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 172447931 +Linkedid: 1724479302.9790 +Variable: DSTRING +Value: PJSIP/12/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 30 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:01:54 + +Event: Newexten +Privilege: d +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: s +Priority: 50 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: DIALEDTIME +Value: + + +09:01:54 + +Event: Newexte +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: RINGTIME +Value: + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000113e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479313.9799 +Linkedid: 1724479302.9790 +Variable: __CALLFILENAME +Value: external-12-79116238157-2024 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000113e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479313.9799 +Linkedid: 1724479302.9790 +Variable: __TTL +Value: 63 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000113e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479313.9799 +Linkedid: 1724479302.9790 +Variable: __FROMQUEUEEXTEN +Value: 79116238157 + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000113e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724479302.9790 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000113e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479313.9799 +Linkedid: 1724479302.9790 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000113f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479313.9800 +Linkedid: 1724479302.9790 +Variable: __CALLFILENAME +Value: external-10-79116238157-20240824-090153-1724479313.9797 + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000113f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479313.9800 +Linkedid: 1724479302.9790 +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000113f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Ре +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479313.9800 +Linkedid: 1724479302.9790 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:01:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000113f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724479313.9800 +Linkedid: 1724479302.9790 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/10-0000113f + + +09:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000113f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Р +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479313.9800 +Linkedid: 1724479302.9790 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +09:01:54 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +DestChannel: Local/10@from-queue-00000a7d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479313.9796 +DestLinkedid: 17244 +DialString: 10/sip + + +09:01:54 + +Event: RTCPReceived +Privilege: reporting,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +DestChannel: Local/12@from-queue-00000a7b;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479313.9792 +DestLinkedid: 1724479302.9790 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842ee521 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8677025.871994 +SentRTP: 52549324 +SentPackets: 347 +SentOctets: 55520 +Report0SourceSSRC: 0x68d6cd7f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 17585 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 2 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:01:56 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/13-0000113d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +09:01:56 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 410 +LastCall: 1724479311 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: RINGTIME_MS +Value: 3168 +DestChannel: Local/13@from-queue-00000a7c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479313.9794 +DestLinkedid: 1724479302.9790 +DialStatus: RINGING + + +09:01:56 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 55 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3684 +DestChannel: PJSIP/12-0000113e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479313.9799 +DestLinkedid: 1724479302.9790 +DialStatus: RINGING +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 331 +LastCall: 1724424486 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:01:57 + +Event: DialState +Privilege: call,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 4312 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 283 +LastCall: 1724428399 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: PJSIP/10-0000113f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479313.9800 +DestLinkedid: 1724479302.9790 +DialStatus: RINGING + + +09:01:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: 194 +Application: QueueLog +AppData: 194,1724479306.9791,NONE,DID,79217365096 + + +09:01:57 + +Event: Newexten +Privilege: dia +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:01:57 + +Event: MusicOnHoldStart +Privilege: call,all +Channel: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: QUEUEJOINTIME +Value: 1724479317 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Queue: 194 +Position: 2 +Count: 2 + + +09:01:57 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: DIALEDPEERNAME +Value: PJSIP/13-0000113d +Hint: PJSIP/13&Custom +Status: 1 +StatusText: InUse + + +09:01:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 1 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Extension: s +Application: ExecIf +AppData: 1?Set(CDR(recordingfile)=external-13-7 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/13 +State: INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 410 +LastCall: 1724479311 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 4 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(CFIGNORE)= + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Variable: MACRO_CONTEXT +Value: macro-auto-blkvm +Extension: s +Application: Macro +AppData: blkvm-clr, + + +09:01:58 + +Event: VarS +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Variable: MACRO_ +Value: 0 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-0000113d +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724479313.9798 +DestLinkedid: 1724479302.9790 +DialStatus: ANSWER +BridgeUniqueid: eca8b4d8-923d-4713-8a4f-b132cfafb7d0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +09:01:58 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: BRIDGEPVTCALLID +Value: 0083c657-c98c-474d-8c92-45682f953a2f +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@fro +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479313.9792 +DestLinkedid: 1724479302.9790 +DialStatus: CANCEL + + +09:01:58 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000a7d;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: 79116238157 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +DestChannel: Local/10@from-queue-00000a7d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479313.9796 +DestLinkedid: 1724479302.9790 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/12-0000113e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479313.9799 +DestLinkedid: 1724479302.9790 +DialStatus: CANCEL +Variable: MACRO_EXTEN +Value: 12 + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: QUEUEPOSITION +Value: 1 +Queue: 194 +Position: 1 +Count: 1 + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +DestChannel: Local/13@from-queue-00000a7c;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479313.9794 +DestLinkedid: 1724479302.9790 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 5 +RingTime: 5 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:01:58 + +Event: VarSet +Privilege: call,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: DIALSTATUS +Value: CANCEL +BridgeUniqueid: 2180a0b3-8420-4f56-9913-0e75f4aebc45 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: GotoIf +AppData: 1?theend +DestChannel: PJSIP/10-0000113f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116238157 +DestConnectedLineName: 79116238157 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479313.9800 +DestLinkedid: 1724479302.9790 +DialStatus: CANCEL +Device: Local/10@from-queue +State: NOT_INUSE + + +09:01:58 + +Event: VarSet +Privilege: dia +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: ARG2 +Value: + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:01:58 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-0000113f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724479313.9800 +Linkedid: 1724479302.9790 +Cause: 26 +Cause-txt: Answered elsewhere +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Device: PJSIP/10 +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 331 +LastCall: 1724424486 +LastPause: 0 +LoginTime: 1724013099 + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 283 +LastCall: 1724428399 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/12@from-queue-00000a7b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479313.9793 +Linkedid: 1724479302.9790 +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: 2180a0b3-8420-4f56-9913-0e75f4aebc45 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Value: 0 +Family: refreshcallhistory +ActionID: 9816 +Variable: MACRO_DEPTH + + +09:01:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479313.9794 +Linkedid: 1724479302.9790 +Variable: BRIDGEPVTCALLID +Value: SDfnh7101-2cbbc0daa19f9a291062e4ef578a6d7f-v300g00010 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +Source: 79116238157 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116238157" <79116238157> +DestinationChannel: PJSIP/12-0000113e +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479313.9793 +UserField: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: 2180a0b3-8420-4f56-9913-0e75f4aebc45 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9817 + + +09:01:58 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479313.9797 +Linkedid: 1724479302.9790 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Source: 79116238157 +Destination: 10 +DestinationContext: ext-local +CallerID: "79116238157" <79116238157> +DestinationChannel: PJSIP/10-0000113f +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479313.9797 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9818 +Device: Local/10@from-queue +State: NOT_INUSE + + +09:01:58 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/10@FROM-QUEUE +ActionID: 9820 + + +09:02:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:02:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:02:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090202 +Variable: __YEAR +Value: 2024 + + +09:02:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:02:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:02:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:02:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:02:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:02:02 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:02:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 21 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(name-pres)=allowed_not_screened + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: 2 +Application: AGI +AppData: agi + + +09:02:04 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +CommandId: 1252080881 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:02:04 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +CommandId: 956251498 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:02:04 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +CommandId: 758450021 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724479322.9801 +Linkedid: 17244 +CommandId: 1049994035 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: s +Application: +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: AMPUSER +Value: 79517257888 +Extension: s +Application: Set +AppData: AMPUSER=79517257888 + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 4 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: 194 +Application: Set +AppData: __RVOL_MODE= +Variable: VQ_AINFO +Value: + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +09:02:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479324.9802 +Linkedid: 1724479306.9791 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479324.9802 +Linkedid: 1724479306.9791 +Variable: __MOHCLASS +Value: + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: __TTL +Value: 64 + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: __YEAR +Value: 2024 + + +09:02:04 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a7e;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479324.9802 +LocalOneLinkedid: 1724479306.9791 +LocalTwoChannel: Local/12@from-queue-00000a7e;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116094059 +LocalTwoCallerIDName: 79116094059 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479324.9803 +LocalTwoLinkedid: 1724479306.9791 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000a7e;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79116094059 +DestConnectedLineName: 79116094059 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479324.9802 +DestLinkedid: 1724479306.9791 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479324.9804 +Linkedid: 1724479306.9791 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: dontcare + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479324.9804 +Linkedid: 1724479306.9791 +Variable: __RINGINGSENT +Value: TRUE + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479324.9804 +Linkedid: 1724479306.9791 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: __FROMQUEUEEXTEN +Value: 79116094059 + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: __TIMESTR +Value: 20240824-090146 + + +09:02:04 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a7f;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479324.9804 +LocalOneLinkedid: 1724479306.9791 +LocalTwoChannel: Local/10@from-queue-00000a7f;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116094059 +LocalTwoCallerIDName: 79116094059 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479324.9805 +LocalTwoLinkedid: 1724479306.9791 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000a7f;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79116094059 +DestConnectedLineName: 79116094059 +DestLanguage: en +DestAccountCode: +DestContext: + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +DestChannel: Local/10@from-queue-00000a7f;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479324.9804 +DestLinkedid: 1724479306.9791 +DialString: Local/10@from-queue/n +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: __FROMQ +Value: true + + +09:02:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: ARG3 +Value: 0 +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: ARG1 +Value: +Extension: 12 +Application: GotoIf +AppData: 0?hangup + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000a7f;2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: HOTDESCKCHAN +Value: 10@from-queue-00000a7f;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000a7f;2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: Var +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79116094059 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479324.9803 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 1 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479324.9803 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791160940 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000a7e;2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79116094059 + + +09:02:05 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000a7f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479324.9804 +Linkedid: 1724479306.9791 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 172 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub +Exten: s +Priority: 6 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recor +Priority: 16 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-chec +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79116094059-20240824-090204-1724479324.9805.wav,abi(), + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=R + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: DEXTEN +Value: 10 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 791160940 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: DB_R +Value: 2 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: +AppData: 0?skipset + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: ctset +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: ALERT_INFO +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_3 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724479324.9803 +Linkedid: 172447 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: __FROMEXTEN +Value: 79116094059 +Extension: s +Application: Set +AppData: __FROMEXTEN=79116094059 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79116094059 and 12 +Variable: MACRO_DEPTH +Value: 1 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79116094059-20240824-090204-1724479324.9803 +Variable: __CALLFILENAME +Value: external-12-79116094059-20240824- + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000a7e;2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: DB_RESULT +Value: 12 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: VarSet +Privilege: dialpla +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: DB_ +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: PROGRESSTIME +Value: + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911609 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: PROGRESSTIME +Value: + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001141 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 1 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Variable: __REC_POLICY_MODE +Value: YES + + +09:02:05 + +Event: VarSet +Privilege: dialp +Channel: PJSIP/12-00001141 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Variable: __RINGTIMER +Value: 60 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001141 +ChannelState: 0 +ChannelStateDesc: D +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001141 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +09:02:05 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/10-00001142 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001142 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479324.9807 +Linkedid: 1724479306.9791 +Variable: __MON_FMT +Value: wav + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001142 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479324.9807 +Linkedid: 1724479 +Variable: __RINGTIMER +Value: 60 + + +09:02:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001142 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479324.9807 +Linkedid: 1724479306.9791 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:02:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001142 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724479324.9807 +Linkedid: 1724479306.9791 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +09:02:05 + +Event: DialBegin +Privilege: call,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-00001141 +DestChannelState: 0 + + +09:02:05 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 5 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +DestChannel: PJSIP/10-00001142 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116094059 +DestConnectedLineName: 79116094059 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479324.9807 +DestLinkedid: 1724479306.9791 +DialStatus: RINGING +DialString: 10/sip + + +09:02:05 + +Event: RTCPReceived +Privilege: reporting,all +Device: Local/10@from-queue +State: INUSE +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842ee516 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8677014.561996 +SentRTP: 98509311 +SentPackets: 1098 +SentOctets: 175680 +Report0SourceSSRC: 0x5b7f5148 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 26005 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 10 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:02:07 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 53 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3057 +DestChannel: Local/12@from-queue-00000a7e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116094059 +DestConnectedLineName: 79116094059 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479324.9802 +DestLinkedid: 1724479306.9791 +DialStatus: RINGING +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing + + +09:02:07 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 331 +LastCall: 1724424486 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:02:08 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/10-00001142 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724479324.9807 +Linkedid: 1724479306.9791 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing + + +09:02:08 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: RINGTIME_MS +Value: 3280 +DestChannel: Local/10@from-queue-00000a7f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116094059 +DestConnectedLineName: 79116094059 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479324.9804 +DestLinkedid: 1724479306.9791 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 283 +LastCall: 1724428399 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:02:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 43 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: QAANNOUNCE +Value: + + +09:02:13 + +Event: Newexten +Privilege: d +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 49 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: QMAXWAIT +Value: 600 +Extension: 194 +Application: Set +AppData: QMAXWAIT=600 + + +09:02:13 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: QUEUEJOINTIME +Value: 1724479333 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Queue: 194 +Position: 2 +Count: 2 +Class: default + + +09:02:23 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 55 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: DIALSTATUS +Value: ANSWER +Device: PJSIP/12 +State: INUSE +Hint: PJSIP/12&Custom +Status: 1 +StatusText: InUse + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 331 +LastCall: 1724424486 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/12-00001141 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: P +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: CFIGNORE +Value: +Extension: s +Application: Set +AppData: MASTER_CHANNEL(CFIGNORE)= + + +09:02:23 + +Event: VarS +Privilege: dialplan,all +Channel: PJSIP/12-00001141 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Extension: s +Application: Macro +AppData: blkvm-clr, +Variable: MACRO_CONTEXT +Value: macro-auto-blkvm + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001141 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +09:02:23 + +Event: VarSet +Privilege: dia +Channel: PJSIP/12-00001141 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +09:02:23 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/12-00001141 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116094059 +DestConnectedLineName: 79116094059 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724479324.9806 +DestLinkedid: 1724479306.9791 +DialStatus: ANSWER +BridgeUniqueid: 46078183-7f86-45b0-a703-211e0bf2b0fb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +09:02:23 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 172447930 +Linkedid: 1724479306.9791 +Variable: BRIDGEPVTCALLID +Value: 3147e2c3-6f0c-4a94-9ff0-28d79dd91393 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000a7f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116094059 +DestConnectedLineName: 79116094059 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479324.9804 +DestLinkedid: 1724479306.9791 +DialStatus: CANCEL + + +09:02:23 + +Event: Devi +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +DestChannel: Local/12@from-queue-00000a7e;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116094059 +DestConnectedLineName: 79116094059 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479324.9802 +DestLinkedid: 1724479306.9791 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Queue: 194 +Position: 1 +Count: 1 +Variable: QUEUEPOSITION +Value: 1 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 26 +RingTime: 18 +BridgeUniqueid: 56d55a48-b35c-4457-9227-d4c78d7cddb9 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: INUSE + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 56d55a48-b35c-4457-9227-d4c78d7cddb9 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: DIALSTATUS +Value: CANCEL +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9821 +DestChannel: PJSIP/10-00001142 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116094059 +DestConnectedLineName: 79116094059 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479324.9807 +DestLinkedid: 1724479306.9791 +DialStatus: CANCEL + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: ARG2 +Value: + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a7f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79116094059 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479324.9805 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +09:02:23 + +Event: Use +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724479324.9807 +Linkedid: 1724479306.9791 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79116094059 +Destination: 10 +DestinationContext: ext-local +CallerID: "79116094059" <79116094059> +DestinationChannel: PJSIP/10-00001142 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 18 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479324.9805 +UserField: +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 283 +LastCall: 1724428399 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9822 + + +09:02:23 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/13-0000113d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7b628ef5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724479343.436236 +SentRTP: 98657216 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0x2ccfc230 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3009 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479343.9808 +Linkedid: 1724479322.9801 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479343.9808 +Linkedid: 1724479322.9801 +Variable: __MOHCLASS +Value: + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: __TTL +Value: 64 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: __MONTH +Value: 08 + + +09:02:23 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a80;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479343.9808 +LocalOneLinkedid: 1724479322.9801 +LocalTwoChannel: Local/10@from-queue-00000a80;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79517257888 +LocalTwoCallerIDName: 79517257888 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479343.9809 +LocalTwoLinkedid: 1724479322.9801 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000a80;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79517257888 +DestConnectedLineName: 79517257888 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479343.9808 +DestLinkedid: 1724479322.9801 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: MACRO_CONTEXT +Value: ext-local + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_CONTEXT +Value: macro-e +Extension: s +Application: Macro +AppData: user-callerid, + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: CHANCONTEXT +Value: from-queue-00000a80;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a80;2 + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: s +Application: Set +AppData: CHANEXTEN=10 +Variable: MACRO_DEPTH +Value: 2 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: HOTDESKEXTEN +Value: 10@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479343.9809 +Linkedid: 17 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: ARG1 +Value: novm + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: LOCAL(ARG3) +Value: dontc +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724479343.9809 +Linkedid: 172 +Variable: NOW +Value: 1724479343 +Extension: s +Application: Set +AppData: NOW=1724479343 + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479343.9809 +Linkedid: 17 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +09:02:23 + +Event: N +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-chec +Exten: exten +Priority: 11 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: LOCAL(ARG1) +Value: yes +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: RECFROMEXTEN +Value: 79517257888 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79517257888) + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79517257888-20240824-090223-1724479343.9809.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79517257888-20240824-090223-1724479343.9809.wav + + +09:02:23 + +Event: Newexten +Privilege: dialpl +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: MACRO_DEPTH +Value: 1 + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: e +Priority: 25 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-ex +Exten: s +Priority: 7 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 6 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +09:02:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +09:02:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 +Variable: THISDIAL +Value: PJSIP/10 + + +09:02:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: +Value: PJSIP/10/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: PJSIP/10/sip + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +09:02:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +09:02:24 + +Event: VarSet +Privilege: +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: ANSWEREDTIME_MS +Value: + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJS +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: __REC_STATUS +Value: RECORDING + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001143 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 1 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: __DAY +Value: 24 + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001143 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: __QCONTEXT +Value: 0 + + +09:02:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001143 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: __DIRECTION +Value: + + +09:02:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001143 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +09:02:24 + +Event: MusicOnHoldSt +Privilege: call,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/10@from-queue-00000a80;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79517257888 +DestConnectedLineName: 79517257888 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479343.9808 +DestLinkedid: 1724479322.9801 +DialString: 10/sip +DialStatus: RINGING + + +09:02:24 + +Event: DeviceStateChange +Privilege: call,all +Device: Local/10@from-queue +State: INUSE + + +09:02:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001143 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +09:02:26 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: RINGTIME_MS +Value: 2679 +DestChannel: Local/10@from-queue-00000a80;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79517257888 +DestConnectedLineName: 79517257888 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479343.9808 +DestLinkedid: 1724479322.9801 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 283 +LastCall: 1724428399 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Device: PJSIP/10 +State: RINGING + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000113d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479313.9798 +Linkedid: 17244793 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: eca8b4d8-923d-4713-8a4f-b132cfafb7d0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:02:30 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724479313.9798 +Linkedid: 1724479302.9790 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 411 +LastCall: 1724479350 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9824 +BridgeUniqueid: eca8b4d8-923d-4713-8a4f-b132cfafb7d0 +BridgeType: basic +BridgeTechnology: simple_bridge + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: eca8b4d8-923d-4713-8a4f-b132cfafb7d0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7911 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: ARG2 +Value: 13 + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: ARG5 +Value: + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a7c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479313.9795 +Linkedid: 1724479302.9790 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: + + +09:02:30 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116238157 +ConnectedLineName: 79116238157 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479313.9794 +Linkedid: 1724479302.9790 +Cause: 16 +Source: 79116238157 +Destination: 13 +DestinationContext: ext-local +CallerID: "79116238157" <79116238157> +DestinationChannel: PJSIP/13-0000113d +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 36 +BillableSeconds: 31 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479313.9795 +UserField: +Cause-txt: Normal Clearing +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 2180a0b3-8420-4f56-9913-0e75f4aebc45 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: NOT_INUSE + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-0000113b +ActionID: 9826 +BridgeUniqueid: 2180a0b3-8420-4f56-9913-0e75f4aebc45 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_PRIORITY + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7911623815 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: MACRO_DEPTH +Value: 1 +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842ee545 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8677061.666992 +SentRTP: 52669601 +SentPackets: 1346 +SentOctets: 215360 +Report0SourceSSRC: 0x040d48ad +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 20005 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 +Extension: s +Application: Hangup +AppData: +Device: Local/13@from-queue +State: NOT_INUSE + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479302.9790 +Linkedid: 1 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; +Source: 79116238157 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116238157" <79116238157> +DestinationChannel: Local/12@from-queue-00000a7b;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 15 +BillableSeconds: 15 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479302.9790 +UserField: + + +09:02:30 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-0000113b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116238157 +CallerIDName: 79116238157 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479302.9790 +Linkedid: 1724479302.9790 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9827 +Source: 79116238157 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116238157" <79116238157> +DestinationChannel: Local/10@from-queue-00000a7d;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 5 +BillableSeconds: 5 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479302.9790 +UserField: + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001143 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse +Extension: s +Application: Macro +AppData: auto-blkvm + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 283 +LastCall: 1724428399 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-00001143 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +09:02:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001143 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:02:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001143 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001140)= + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001143 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000a80;2 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 37f8d450-04c6-49d6-889a-bab7b41249bc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE + + +09:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: BRIDGEPVTCALLID +Value: dc9ee718-2442-41e1-b727-020ba1e9b59e + + +09:02:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:02:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:02:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090237 +Variable: __YEAR +Value: 2024 + + +09:02:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:02:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:02:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:02:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:02:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 749 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:02:38 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:02:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: 2 +Application: AGI +AppData: agi + + +09:02:39 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +CommandId: 285141931 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:02:39 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +CommandId: 2070371345 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:02:39 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +CommandId: 603084943 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724479357.9811 +Linkedid: 17244 +CommandId: 2042456242 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: s +Application: +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: AMPUSER +Value: 74996497130 +Extension: s +Application: Set +AppData: AMPUSER=74996497130 + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 4 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: 194 +Application: Set +AppData: __RVOL_MODE= +Variable: VQ_AINFO +Value: + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:02:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +09:02:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +09:02:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T09 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +09:02:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T09 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +09:02:43 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-00001143 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 37f8d450-04c6-49d6-889a-bab7b41249bc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:02:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:02:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001143 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479343.9810 +Linkedid: 1724479322.9801 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 37f8d450-04c6-49d6-889a-bab7b41249bc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:02:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a80;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479343.9809 +Linkedid: 1724479322.9801 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 284 +LastCall: 1724479363 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 79517257888 +Destination: 10 +DestinationContext: ext-local +CallerID: "79517257888" <79517257888> +DestinationChannel: PJSIP/10-00001143 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 19 +BillableSeconds: 12 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479343.9809 +UserField: +Extension: s +Application: Hangup +AppData: +Variable: MACRO_DEPTH +Value: 0 + + +09:02:43 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/10@from-queue-00000a80;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257888 +ConnectedLineName: 79517257888 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479343.9808 +Linkedid: 1724479322.9801 +Variable: BRIDGEPEER +Value: +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: f9a5d5f0-d3dc-4930-bbca-dc85cd989cbe +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:02:43 + +Event: VarSet +Privilege: dialplan,all +Device: Local/10@from-queue +State: NOT_INUSE +BridgeUniqueid: f9a5d5f0-d3dc-4930-bbca-dc85cd989cbe +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +09:02:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001140 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: + + +09:02:43 + +Event: AgentComplete +Privilege: agent,all +AccountCode: +Source: 79517257888 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79517257888" <79517257888> +Channel: PJSIP/10 +DestinationChannel: Local/10@from-queue-00000a80;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 40 +BillableSeconds: 40 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479322.9801 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257888 +CallerIDName: 79517257888 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479322.9801 +Linkedid: 1724479322.9801 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9828 +Queue: 194 +Interface: Local/10@from-queue/n + + +09:02:43 + +Event: RTCPSent +Privilege: reporting,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-00001144 +ActionID: 9831 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x39e772ba +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724479363.454781 +SentRTP: 40064 +SentPackets: 231 +SentOctets: 36960 +Report0SourceSSRC: 0x000c0135 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 4243 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 2 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Extension: 194 +Application: QueueLog +AppData: 194,1724479357.9811,NONE,DID,79217365096 + + +09:02:48 + +Event: Newexten +Privilege: dia +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:02:48 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: QUEUEJOINTIME +Value: 1724479368 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING +Queue: + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479368.9812 +Linkedid: 1724479357.9811 +Class: default +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479368.9812 +Linkedid: 1724479357.9811 +Variable: __RINGINGSENT +Value: TRUE + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479368.9812 +Linkedid: 1724479357.9811 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: __FROMQUEUEEXTEN +Value: 74996497130 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: __YEAR +Value: 2024 + + +09:02:48 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a81;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479368.9812 +LocalOneLinkedid: 1724479357.9811 +LocalTwoChannel: Local/13@from-queue-00000a81;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 74996497130 +LocalTwoCallerIDName: 74996497130 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479368.9813 +LocalTwoLinkedid: 1724479357.9811 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000a81;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479368.9812 +DestLinkedid: 1724479357.9811 +Queue: 194 +Interface: Local/13@from-qu + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479368.9814 +Linkedid: 1724479357.9811 +DestChannel: Local/13@from-queue-00000a81;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479368.9812 +DestLinkedid: 1724479357.9811 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 792173 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479368.9814 +Linkedid: 1724479357.9811 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479368.9814 +Linkedid: 1724479357.9811 +Variable: __DIRECTION +Value: + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001144 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: __TIMESTR +Value: 20240824-090237 + + +09:02:48 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a82;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479368.9814 +LocalOneLinkedid: 1724479357.9811 +LocalTwoChannel: Local/10@from-queue-00000a82;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 74996497130 +LocalTwoCallerIDName: 74996497130 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479368.9815 +LocalTwoLinkedid: 1724479357.9811 +LocalOptimization: No +DestChannel: + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +DestChannel: Local/10@from-queue-00000a82;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479368.9814 +DestLinkedid: 1724479357.9811 +DialString: Local/10@from-queue/n +Extension: 194 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: __RINGTIMER +Value: 60 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-call + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479368.9813 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000a81;2 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=74996497130 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479368.9812 +Linkedid: 1724479357.9811 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: LOCAL(ARG1) +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record +Exten: s +Priority: 9 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +09:02:48 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 17244793 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724479368.9813 +Linkedid: 172447935 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-74996497130-20240824-090248-1724479368.9813.wav,abi(), + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 4 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: __FROMQ +Value: true +Extension: 10 +Application: GotoIf +AppData: 1?194,1 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: __RINGTIMER +Value: 60 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 + + +09:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479368.9815 + + +09:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 749 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000a82;2 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 749964 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=74996497130 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG +Value: + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: DEXTEN +Value: 13 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.98 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Extension: dstring +Application: GotoIf +AppData: Debug +Variable: MACRO_DEPTH +Value: 2 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +09:02:49 + +Event: Newext +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 1 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=74996497130 +Variable: MACRO_DEPTH +Value: 2 + + +09:02:49 + +Event: V +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 172447936 +Linkedid: 1724479357.9811 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: __FROMEXTEN +Value: 74996497130 +Extension: s +Application: Set +AppData: __FROMEXTEN=74996497130 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Extension: exte +Application: NoOp +AppData: Exten Recording Check between 74996497130 and 10 +Variable: MACRO_DEPTH +Value: 1 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-di +Exten: exten +Priority: 4 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: LOCAL(ARG3) +Value: 10 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: recordcheck +Application: Goto +AppData: yes + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: __REC_POLICY_MODE +Value: YES +Extension: s +Application: GotoIf +AppData: 1?godial + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +09:02:49 + +Event: V +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: PROGRESSTIME_MS +Value: + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-74996497130-20240824-090248-1724479368.9815 +Variable: MACRO_DEPTH +Value: 1 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record +Exten: exten +Priority: 12 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-ex +Exten: s +Priority: 7 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-di +Exten: s +Priority: 3 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001145 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479368.9816 +Linkedid: 1724479357.9811 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: __REC_STATUS +Value: RECORDING + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001145 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479368.9816 +Linkedid: 1724479357.9811 +Variable: __TIMESTR +Value: 20240824-090248 +Extension: dstring +Application: Set +AppData: DSTRING= + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479368.9815 +Linkedid: 17 +Variable: __RINGTIMER +Value: 60 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001145 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479368.9816 +Linkedid: 1724479357.9811 +Variable: __FROMQUEUEEXTEN +Value: 74996497130 + + +09:02:49 + +Event: NewConnectedLine +Privilege: dialplan,all +Channel: PJSIP/13-00001145 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724479368.9816 +Linkedid: 1724479357.9811 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357. +Extension: s +Application: Set +AppData: TECH=PJSIP +Variable: TECH +Value: PJSIP + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001145 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 7 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 +Variable: MACRO_DEPTH +Value: 2 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001145 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479368.9816 +Linkedid: 1724479357.9811 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: +Value: 2 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +DestChannel: PJSIP/13-00001145 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479368.9816 +DestLinkedid: 1724479357.9811 +DialString: 13/sip +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +DestChannel: Local/13@from-queue-00000a81;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479368.9812 +DestLinkedid: 1724479357.9811 +DialStatus: RINGING +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.981 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +09:02:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) +Device: Local/13@from-queue +State: INUSE + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALEDPEERNAME +Value: + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001146 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: __KEEPCID +Value: TRUE + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: __YEAR +Value: 2024 + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001146 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: __SIGNORE +Value: TRUE + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001146 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: __MOHCLASS +Value: + + +09:02:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001146 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: fun +Exten: s +Priority: 3 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +09:02:49 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479368.9814 +Linkedid: 1724479357.9811 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/10-00001146 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479368.9817 +DestLinkedid: 1724479357.9811 +DialString: 10/sip + + +09:02:49 + +Event: RTCPReceived +Privilege: reporting,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +DestChannel: Local/10@from-queue-00000a82;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479368.9814 +DestLinkedid: 1724479357.9811 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842ee558 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8677080.810989 +SentRTP: 52988837 +SentPackets: 3093 +SentOctets: 494880 +Report0SourceSSRC: 0x68d6cd7f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 20316 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 10 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:02:51 + +Event: DialState +Privilege: call,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 284 +LastCall: 1724479363 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 2647 +DestChannel: PJSIP/10-00001146 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479368.9817 +DestLinkedid: 1724479357.9811 +DialStatus: RINGING + + +09:02:51 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/13-00001145 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724479368.9816 +Linkedid: 1724479357.9811 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing +Device: PJSIP/13 +State: RINGING + + +09:02:52 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 411 +LastCall: 1724479350 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: RINGTIME_MS +Value: 3258 +DestChannel: Local/13@from-queue-00000a81;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479368.9812 +DestLinkedid: 1724479357.9811 +DialStatus: RINGING + + +09:02:53 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse +Channel: PJSIP/10-00001146 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/10 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm + + +09:02:53 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 284 +LastCall: 1724479363 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-00001146 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +09:02:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001146 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:02:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001146 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001144)= + + +09:02:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001146 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +09:02:53 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/10-00001146 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-00001146 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724479368.9817 +DestLinkedid: 1724479357.9811 +DialStatus: ANSWER +BridgeUniqueid: 20861978-c6a9-4619-8281-58ce43a0c45a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:02:53 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: 20861978-c6a9-4619-8281-58ce43a0c45a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: BRIDGEPVTCALLID +Value: 229762ea-f3f8-438b-8ff3-491db5df7455 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000a82;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479368.9814 +DestLinkedid: 1724479357.9811 +DialStatus: ANSWER + + +09:02:53 + +Event: AgentConnect +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Device: Queue +State: NOT_INUSE +DestChannel: Local/13@from-queue-00000a81;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479368.9812 +DestLinkedid: 1724479357.9811 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 + + +09:02:53 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 54a227a4-6761-4cfb-b7ef-d249efe88c07 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: NOT_INUSE +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479368.9813 +Linkedid: +DestChannel: PJSIP/13-00001145 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479368.9816 +DestLinkedid: 1724479357.9811 +DialStatus: CANCEL +Variable: ARG1 +Value: novm +Source: 74996497130 +Destination: 13 +DestinationContext: ext-local +CallerID: "74996497130" <74996497130> +DestinationChannel: PJSIP/13-00001145 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 4 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479368.9813 +UserField: + + +09:02:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: ARG4 +Value: + + +09:02:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:02:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a81;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcal +Exten: s +Priority: 4 +Uniqueid: 1724479368.9813 +Linkedid: 1724479357.9811 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: + + +09:02:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 411 +LastCall: 1724479350 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9834 +BridgeUniqueid: 54a227a4-6761-4cfb-b7ef-d249efe88c07 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +09:02:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000a82;1 + + +09:03:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:03:07 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 20861978-c6a9-4619-8281-58ce43a0c45a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:03:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 172 +Linkedid: 1724479357.9811 +Variable: ARG2 +Value: 10 +BridgeUniqueid: 20861978-c6a9-4619-8281-58ce43a0c45a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:03:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: ARG4 +Value: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Source: 74996497130 +Destination: 194 +DestinationContext: ext-queues +CallerID: "74996497130" <74996497130> +DestinationChannel: Local/13@from-queue-00000a81;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 15 +BillableSeconds: 15 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479357.9811 +UserField: + + +09:03:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:03:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from- +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: + + +09:03:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001146 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479368.9817 +Linkedid: 1724479357.9811 +Variable: RTPAUDIOQOS +Value: ssrc=2131933115;themssrc=1239098715;lp=0;rxjitter=0.000000;rxcount=682;txjitter=0.000625;txcount=704;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Cause: 16 +BridgeUniqueid: 54a227a4-6761-4cfb-b7ef-d249efe88c07 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing + + +09:03:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000196; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +BridgeUniqueid: 54a227a4-6761-4cfb-b7ef-d249efe88c07 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Source: 74996497130 +Destination: 194 +DestinationContext: ext-queues +CallerID: "74996497130" <74996497130> +DestinationChannel: Local/10@from-queue-00000a82;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 19 +BillableSeconds: 19 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479357.9811 +UserField: +Extension: h +Application: Macro +AppData: hangupcall, + + +09:03:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Cause: 16 +Cause-txt: Normal Clearing +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 54a227a4-6761-4cfb-b7ef-d249efe88c07 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: GotoIf +AppData: 1?theend + + +09:03:08 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479357.9811 +Linkedid: 1724479357.9811 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +TalkTime: 14 +Reason: agent +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Device: PJSIP/10 +State: NOT_INUSE +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 285 +LastCall: 17244793 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:03:08 + +Event: Cdr +Privilege: cdr,all +Device: Local/10@from-queue +State: NOT_INUSE +Channel: Local/10@from-queue-00000a82;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479368.9815 +Linkedid: 1724479357.9811 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000228; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=072.293727; stdevtxmes=026.146864; +Cause: 16 +Cause-txt: Normal Clearing +Source: 74996497130 +Destination: 10 +DestinationContext: ext-local +CallerID: "74996497130" < + + +09:03:08 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/10@FROM-QUEUE +ActionID: 9838 + + +09:03:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:03:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:03:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090330 +Variable: __YEAR +Value: 2024 + + +09:03:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:03:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:03:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:03:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:03:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 796 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:03:30 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:03:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 21 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(name-pres)=allowed_not_screened + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: 2 +Application: AGI +AppData: agi + + +09:03:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +CommandId: 600827117 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:03:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +CommandId: 1964396327 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:03:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +CommandId: 1355465092 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724479410.9818 +Linkedid: 1724479 +CommandId: 1429494327 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: s +Application: Se +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: +Linkedid: 1724479410.9818 +Variable: AMPUSER +Value: 79658088588 +Extension: s +Application: Set +AppData: AMPUSER=79658088588 + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 4 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=do +Variable: VQ_AINFO +Value: + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +09:03:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:03:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +09:03:32 + +Event: Registry +Privilege: system,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: +ChannelType: PJSIP +Username: sip +Domain: sip +Status: Registered + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 43 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: QAANNOUNCE +Value: + + +09:03:41 + +Event: Newexten +Privilege: d +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 49 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: QMAXWAIT +Value: 600 +Extension: 194 +Application: Set +AppData: QMAXWAIT=600 + + +09:03:41 + +Event: Newchannel +Privilege: call, +Channel: Local/13@from-queue-00000a83;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479421.9819 +Linkedid: 1724479410.9818 +Variable: QUEUEJOINTIME +Value: 1724479421 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479421.9819 +Linkedid: 1724479410.9818 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479421.9819 +Linkedid: 1724479410.9818 +Variable: __FROM_DID +Value: 79217365096 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: __QC_CONFIRM +Value: 0 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410 +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: __DAY +Value: 24 + + +09:03:41 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a83;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479421.9819 +LocalOneLinkedid: 1724479410.9818 +LocalTwoChannel: Local/13@from-queue-00000a83;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79658088588 +LocalTwoCallerIDName: 79658088588 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479421.9820 +LocalTwoLinkedid: 1724479410.9818 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000a83;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479421.9819 +DestLinkedid: 1724479410.9818 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479421.9821 +Linkedid: 1724479410.9818 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479421.9821 +Linkedid: 1724479410.9818 +Variable: __MOHCLASS +Value: + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479421.9822 +Linkedid: 172 +Variable: __TTL +Value: 64 + + +09:03:41 + +Event: VarSet +Privilege: +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: __MONTH +Value: 08 + + +09:03:41 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410. +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a84;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479421.9821 +LocalOneLinkedid: 1724479410.9818 +LocalTwoChannel: Local/10@from-queue-00000a84;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79658088588 +LocalTwoCallerIDName: 79658088588 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479421.9822 +LocalTwoLinkedid: 1724479410.9818 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000a84;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79658088588 +DestConnectedLineName: 79658088588 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479421.9821 +DestLinkedid: 1724479410.9818 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479421.9822 +Linkedid: +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: MACRO_CONTEXT +Value: ext-local + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_CONTEXT +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: CHANCONTEXT +Value: from-queue-00000a84;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a84;2 + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: s +Application: Set +AppData: CHANEXTEN=10 +Variable: MACRO_DEPTH +Value: 2 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: HOTDESKEXTEN +Value: 10@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: DB_RESULT +Value: EXTENSION + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: MACRO_EXTEN +Value: 13 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: CHANCONTEXT +Value: from-queu +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a83;2 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-us +Exten: s +Priority: 5 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: CHANEXTEN +Value: 13 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: s +Application: Set +AppData: CALLERID(name)=79658088588 +Variable: MACRO_DEPTH +Value: 2 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 1 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: __EXTTOCALL +Value: 10 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: LOCAL(ARG2) +Value: 10 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: NOW +Value: 1724479421 +Extension: s +Application: Set +AppData: NOW=1724479421 + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724479421.9822 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479421.9822 +Linkedid: 17 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: MACRO_DEPTH +Value: 1 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79658088588) +Variable: MACRO_DEPTH +Value: 1 + + +09:03:41 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordche +Priority: 20 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79658088588-20240824-090341-1724479421.9822.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79658088588-20240824-090341-1724479421.9822.wav,abi(), + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479421.9 +Linkedid: 1724479410.9818 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG3 +Value: + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479421.9822 +Linkedid: 17 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_DEPTH +Value: 2 + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724479421.9 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: dstring +Application: Set +AppData: DEVICES=10 +Variable: DEVICES +Value: 10 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +09:03:41 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +09:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 172 +Linkedid: 1724479410.9818 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALEDPEERNAME +Value: + + +09:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: RT= + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 172447 +Linkedid: 1724479410.9818 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:03:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: s +Application: Set +AppData: __FROMEXTEN=79658088588 +Variable: MACRO_DEPTH +Value: 1 + + +09:03:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:03:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-qu +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Variable: DIALEDPEERNUMBER +Value: 10/sip +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79658088588 and 13 + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Variable: __YEAR +Value: 2024 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001148 +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001148 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: MACRO_DEPTH +Value: 1 + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001148 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: recordcheck +Application: Goto +AppData: yes + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79658088588) +Variable: MACRO_DEPTH +Value: 1 + + +09:03:42 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-13-79658088588-20240824-090341-1724479421.9820.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79658088588-20240824-090341-1724479421.9820.wav,abi(), + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: __REC_STATUS +Value: RECORD +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 +Variable: MACRO_EXTEN +Value: s + + +09:03:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-o +Exten: s +Priority: 1 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +09:03:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +09:03:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: DB_RESULT +Value: PJSIP/13 +Extension: dstring +Application: Set +AppData: ITER=1 + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip +Variable: MACRO_DEPTH +Value: 2 + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +09:03:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 796580885 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:03:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: ANSWEREDTIME +Value: + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001149 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479421.9824 +Linkedid: 1724479410.9818 +Variable: __CWIGNORE +Value: TRUE + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479421.9824 +Linkedid: 1724479410.9818 +Variable: __MONTH +Value: 08 + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001149 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479421.9824 +Linkedid: 1724479410.9818 +Variable: __FROM_DID +Value: 79217365096 + + +09:03:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001149 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724479421.9824 +Linkedid: 1724479410.9818 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +09:03:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001148 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724479 +Linkedid: 1724479410.9818 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-00001149 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79658088588 +DestConnectedLineName: 79658088588 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479421.9824 +DestLinkedid: 1724479410.9818 +DialString: 13/sip + + +09:03:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001148 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +09:03:42 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/10@from-queue-00000a84;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79658088588 +DestConnectedLineName: 79658088588 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479421.9821 +DestLinkedid: 1724479410.9818 +DialStatus: RINGING +DialString: 10/sip +Device: Local/13@from-que + + +09:03:42 + +Event: DeviceStateChange +Privilege: call,all +Device: Local/10@from-queue +State: INUSE + + +09:03:44 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/10-00001148 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing + + +09:03:44 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: RINGTIME_MS +Value: 3027 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 285 +LastCall: 1724479387 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: Local/10@from-queue-00000a84;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79658088588 +DestConnectedLineName: 79658088588 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479421.9821 +DestLinkedid: 1724479410.9818 +DialStatus: RINGING + + +09:03:44 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/13-00001149 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724479421.9824 +Linkedid: 1724479410.9818 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +09:03:44 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 411 +LastCall: 1724479350 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: RINGTIME_MS +Value: 3302 +DestChannel: Local/13@from-queue-00000a83;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79658088588 +DestConnectedLineName: 79658088588 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479421.9819 +DestLinkedid: 1724479410.9818 +DialStatus: RINGING + + +09:03:46 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: INUSE +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: DIALEDPEERNUMBER +Value: 10/sip +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 285 +LastCall: 1724479387 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:03:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001148 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 2 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MACRO_RESULT= + + +09:03:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001148 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: from-internal +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal + + +09:03:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001148 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Extension: s +Application: Macro +AppData: blkvm-clr, +Variable: MACRO_DEPTH +Value: 2 + + +09:03:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001148 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: MacroExit +AppData: + + +09:03:46 + +Event: DialEnd +Privilege: call,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +DestChannel: PJSIP/10-00001148 +DestChannelState: + + +09:03:46 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Device: Local/10@from-queue +State: INUSE +BridgeUniqueid: ab93f5c5-8dc3-4844-92e7-d953383294a7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000a83;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79658088588 +DestConnectedLineName: 79658088588 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479421.9819 +DestLinkedid: 1724479410.9818 +DialStatus: CANCEL + + +09:03:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/13-00001149 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79658088588 +DestConnectedLineName: 79658088588 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479421.9824 +DestLinkedid: 1724479410.9818 +DialStatus: CANCEL +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: MACRO_DEPTH +Value: 1 + + +09:03:46 + +Event: Cdr +Privilege: cdr,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: ARG3 +Value: +Source: 79658088588 +Destination: 13 +DestinationContext: ext-local +CallerID: "79 + + +09:03:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479421.9820 +Linkedid: 1724479410.9818 +Variable: MACRO_EXTEN +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:03:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a83;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479421.982 +Linkedid: 1724479410.9818 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +09:03:46 + +Event: UserEvent +Privilege: +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: QUEUEPOSITION +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +DestChannel: Local/10@from-queue-00000a84;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79658088588 +DestConnectedLineName: 79658088588 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479421.9821 +DestLinkedid: 1724479410.9818 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +RingTime: 5 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9839 + + +09:03:46 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: PJSIP/10-00001148 +Family: refreshcallhistory +Channel: Local/10@from-queue-00000a84;2 +ActionID: 9841 +BridgeUniqueid: ab93f5c5-8dc3-4844-92e7-d953383294a7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: PJSIP/13 +State: NOT_INUSE +Exten: s +Context: macro-dial-one +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 411 +LastCall: 1724479350 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPEER + + +09:03:46 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 82ff77a1-8595-450a-b200-949d52cbd146 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000a84;1 + + +09:03:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001141 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479324.9806 +Linkedid: 1724479306.9791 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001875;avgrxjitter=000.000596;stdevrxjitter=000.000380;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +09:03:54 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/12-00001141 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000380; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +09:03:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001141 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116094059 +ConnectedLineName: 79116094059 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479324.980 +Linkedid: 1724479306.9791 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; +BridgeUniqueid: 46078183-7f86-45b0-a703-211e0bf2b0fb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:03:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Loc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: DIALSTATUS +Value: ANSWER +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: 46078183-7f86-45b0-a703-211e0bf2b0fb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:03:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: ARG2 +Value: + + +09:03:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:03:55 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9842 +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: +Membership: static +Penalty: 1 +CallsTaken: 331 +LastCall: 1724424486 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:03:55 + +Event: Cdr +Privilege: cdr,all +Channel: Local/12@from-queue-00000a7e;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479324.9803 +Linkedid: 1724479306.9791 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE +Source: 79116094059 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116094059" <79116094059> +DestinationChannel: PJSIP/12-00001141 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 110 +BillableSeconds: 91 +Disposition: ANSWERED +AMAFlags: DOCUMENTATI + + +09:03:55 + +Event: BridgeDestroy +Privilege: call,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +DestChannel: Local/12@from-queue-00000a7e;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116094059 +DestConnectedLineName: 79116094059 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479324.9802 +DestLinkedid: 1724479306.9791 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 26 +TalkTime: 91 +Reason: agent +Variable: BRIDGEPEER +Value: 1 +BridgeUniqueid: 56d55a48-b35c-4457-9227-d4c78d7cddb9 +BridgeType: basic +BridgeTechnology: s +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9843 + + +09:03:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +09:03:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: RTPAUDIOQOS +Value: ssrc=1758907775;themssrc=524898;lp=0;rxjitter=0.000625;rxcount=6372;txjitter=0.000250;txcount=6331;rlp=0;rtt=0.000000;rxmes=85.365486;txmes=85.367289 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9844 +Extension: s +Application: Hangup +AppData: + + +09:03:55 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-0000113c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094059 +CallerIDName: 79116094059 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479306.9791 +Linkedid: 1724479306.9791 +Variable: RTPAUDIOQOSMES +Value: 1 +Source: 79116094059 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116094059" <79116094059> +DestinationChannel: Local/10@from-queue-00000a7f;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 18 +BillableSeconds: 18 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479306.9791 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9845 + + +09:04:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: RTPAUDIOQOSBRIDGED +Value: ssrc=1315886640;themssrc=2389152979;lp=0;rxjitter=0.000000;rxcount=1745;txjitter=0.001250;txcount=1766;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +09:04:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000385; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +09:04:22 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Variable: MACRO_PRIORITY +Value: + + +09:04:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a84;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724479421.9822 +Linkedid: 1724479410.9818 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +09:04:22 + +Event: Hangup +Privilege: call,all +AccountCode: +Source: 79658088588 +Destination: 10 +DestinationContext: ext-local +CallerID: "79658088588" <79658088588> +Channel: Local/10@from-queue- +DestinationChannel: PJSIP/10-00001148 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 40 +BillableSeconds: 35 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479421.9822 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479421.9821 +Linkedid: 1724479410.9818 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +09:04:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001148 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79658088588 +ConnectedLineName: 79658088588 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Variable: RTPAUDIOQOS +Value: ssrc=1315886640;themssrc=2389152979;lp=0;rxjitter=0.000000;rxcount=1745;txjitter=0.001250;txcount=1766;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +BridgeUniqueid: 82ff77a1-8595-450a-b200-949d52cbd146 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +TalkTime: 36 +Reason: agent +Device: Local/10@from-queue +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +09:04:22 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 19 +Priority: 1 +Uniqueid: 1724479421.9823 +Linkedid: 1724479410.9818 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9847 +BridgeUniqueid: 82ff77a1-8595-450a-b200-949d52cbd146 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:04:22 + +Event: Newexten +Privilege: dialplan,all +BridgeUniqueid: 82ff77a1-8595-450a-b200-949d52cbd146 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +09:04:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001147 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: RTPAUDIOQOS +Value: ss +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9848 +Extension: s +Application: Hangup +AppData: + + +09:04:22 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79658088588 +CallerIDName: 79658088588 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479410.9818 +Linkedid: 1724479410.9818 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79658088588 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79658088588" <79658088588> +DestinationChannel: Local/10@from-queue-00000a84;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 40 +BillableSeconds: 40 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479410.9818 +UserField: +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory + + +09:05:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:05:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:05:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090553 +Variable: __YEAR +Value: 2024 + + +09:05:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:05:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:05:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:05:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:05:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:05:53 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:05:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:05:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:05:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: 2 +Application: AGI +AppData: agi + + +09:05:54 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +CommandId: 1583131402 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:05:54 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +CommandId: 1889854325 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:05:54 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +CommandId: 1452303689 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:05:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724479553.9825 +Linkedid: 1724479 +CommandId: 2012697172 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:05:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:05:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: s +Application: Se +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:05:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: +Linkedid: 1724479553.9825 +Variable: AMPUSER +Value: 79539042899 +Extension: s +Application: Set +AppData: AMPUSER=79539042899 + + +09:05:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +09:05:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +09:05:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:05:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:05:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:05:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +09:05:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 4 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:05:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +09:05:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=do +Variable: VQ_AINFO +Value: + + +09:05:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +09:05:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +09:05:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +09:05:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +09:05:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:05:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:05:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +09:05:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +09:06:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: 194 +Application: QueueLog +AppData: 194,1724479553.9825,NONE,DID,79217365096 + + +09:06:03 + +Event: Newexten +Privilege: dia +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:06:03 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: QUEUEJOINTIME +Value: 1724479563 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING +Queue: + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479563.9826 +Linkedid: 1724479553.9825 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479563.9826 +Linkedid: 1724479553.9825 +Variable: __RINGINGSENT +Value: TRUE + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479563.9826 +Linkedid: 1724479553.9825 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: __FROMQUEUEEXTEN +Value: 79539042899 + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: __YEAR +Value: 2024 + + +09:06:03 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a85;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479563.9826 +LocalOneLinkedid: 1724479553.9825 +LocalTwoChannel: Local/12@from-queue-00000a85;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539042899 +LocalTwoCallerIDName: 79539042899 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479563.9827 +LocalTwoLinkedid: 1724479553.9825 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000a85;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479563.9826 +DestLinkedid: 1724479553.9825 +Queue: 194 +Interface: Local/12@from-qu + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479563.9828 +Linkedid: 1724479553.9825 +DestChannel: Local/12@from-queue-00000a85;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479563.9826 +DestLinkedid: 1724479553.9825 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 792173 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479563.9828 +Linkedid: 1724479553.9825 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:06:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: __FROMQ +Value: true +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +09:06:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479563.9827 + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000a85;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000a85;2 + + +09:06:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479563.9827 +Linkedid: +Extension: s +Application: Set +AppData: AMPUSER=79539042899 +Variable: MACRO_DEPTH +Value: 2 + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:06:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479563.9 +Linkedid: 1724479553.9825 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: CDR(cnam)=79539042899 + + +09:06:03 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000114a + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: __MON_FMT +Value: wav + + +09:06:03 + +Event: AgentCalled +Privilege: agent,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a86;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479563.9828 +LocalOneLinkedid: 1724479553.9825 +LocalTwoChannel: Local/13@from-queue-00000a86;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539042899 +LocalTwoCallerIDName: 79539042899 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479563.9829 +LocalTwoLinkedid: 1724479553.9825 +LocalOptimization: No + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479563.9830 +Linkedid: 1724479553.9825 +DestChannel: Local/13@from-queue-00000a86;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479563.9828 +DestLinkedid: 1724479553.9825 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479563.9830 +Linkedid: 1724479553.9825 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479563. +Linkedid: 1724479553.9825 +Variable: __DAY +Value: 24 + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +09:06:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: __FROM_DID +Value: 79217365096 + + +09:06:03 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a87;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479563.9830 +LocalOneLinkedid: 1724479553.9825 +LocalTwoChannel: Local/10@from-queue-00000a87;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 7 + + +09:06:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479563.9826 +Linkedid: 1724479553.9825 +DestChannel: Local/10@from-queue-00000a87;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479563.9830 +DestLinkedid: 1724479553.9825 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:06:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12, + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553. +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-rec +Exten: s +Priority: 9 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724479563.9 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79539042 +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000a85;2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial- +Exten: s +Priority: 5 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795390 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT +Value: 2 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 1?godial + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dia +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 17244795 +Linkedid: 1724479553.9825 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000114b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479563.9832 +Linkedid: 1724479553.9825 +Variable: DIALEDPEERNUMBER +Value: 12/sip + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479563.9832 +Linkedid: 1724479553.9825 +Variable: __MON_FMT +Value: wav +Extension: 13 +Application: Set +AppData: QAGENT=13 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000114b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479563.9832 +Linkedid: 1724479553.9825 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 10 +Application: GotoIf +AppData: 0?hangup + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724479563.9832 +Linkedid: 1724479553.9825 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: DB_RESULT +Value: EXTENSION +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479 +Linkedid: 1724479553.9825 +Variable: ARG1 +Value: novm +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +09:06:04 + +Event: Va +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a86;2 +Variable: CHANCONTEXT +Value: from-queue-00000a86;2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000a86;2 +Variable: CHANCONTEXT +Value: from + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: AMPUSER +Value: 79539042899 +Extension: s +Application: Set +AppData: AMPUSER=79539042899 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from + + +09:06:04 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724479563.9832 +Linkedid: 1724479553.9825 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/12-0000114b +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000114b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724479563.9832 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: SIPHEADERKEYS +Value: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000114b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479563.9832 +Linkedid: 1724479553.9825 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 +Variable: +Value: 13 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479563.982 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: CDR(cnum)=79539042899 +Variable: LOCAL(ARG3) +Value: dontcare + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724479563 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: __YEAR +Value: 2024 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090603 +Variable: MACRO_CONTEXT +Value: ext-local + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 172447956 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 4 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090603 +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +09:06:04 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: LOCAL(ARGC) +Value: 3 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: __REC_POLICY_MODE +Value: YES + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79539042899) +Variable: M +Value: 1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79539042899-20240824-090603-1724479563.9831.wav + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:06:04 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 172 +Linkedid: 1724479553.9825 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79539042899-20240824-090603-1724479563.9829 +Variable: MACRO_DEPTH +Value: 1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: dstring +Priority: 5 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724479563.9831 +Linkedid: 17 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: GOSUB_RETVAL +Value: +Extension: dstring +Application: Return +AppData: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79539042899 +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-di +Exten: s +Priority: 32 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: ARG +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: RINGTIME_MS +Value: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +DestChannel: Local/12@from-queue-00000a85;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479563.9826 +DestLinkedid: 1724479553.9825 +DialString: 12/sip +DialStatus: RINGING +Extension: recordcheck +Application: Return +AppData: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Device: Local/12@from-queue +State: INUSE +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724479 +Linkedid: 1724479553.9825 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: ITER +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79539042899 + + +09:06:04 + +Event: Newexte +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: RINGTIME +Value: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000114c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: __CALLFILENAME +Value: external-13-79539042899-2024 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000114c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: __TTL +Value: 63 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000114c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: __FROMQUEUEEXTEN +Value: 79539042899 + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000114c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724479553.9825 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000114c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000114d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479563.9834 +Linkedid: 1724479553.9825 +Variable: __CALLFILENAME +Value: external-10-79539042899-20240824-090603-1724479563.9831 + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000114d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479563.9834 +Linkedid: 1724479553.9825 +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000114d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Ре +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479563.9834 +Linkedid: 1724479553.9825 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:06:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000114d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724479563.9834 +Linkedid: 1724479553.9825 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/10-0000114d + + +09:06:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000114d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Р +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479563.9834 +Linkedid: 1724479553.9825 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +09:06:04 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479563.9830 +Linkedid: 1724479553.9825 +DestChannel: PJSIP/10-0000114d +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479563.9834 +DestLinkedid: 1724479553.9825 +DialString: 10/sip +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE + + +09:06:04 + +Event: SuccessfulAuth +Privilege: security,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +DestChannel: Local/10@from-queue-00000a87;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479563.9830 +DestLinkedid: 1724479553.9825 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +EventTV: 2024-08-24T09 +Severity: Informational +Service: AMI +EventVersion: 1 +AccountID: admin +SessionID: 0x7f875000d220 +LocalAddress: IPV4/TCP/0.0.0.0/5038 +RemoteAddress: IPV4/TCP/127.0.0.1/36232 +UsingPassword: 0 +SessionTV: 2024-08-24T09 + + +09:06:06 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/13-0000114c +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING + + +09:06:06 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 411 +LastCall: 1724479350 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: RINGTIME_MS +Value: 2898 +DestChannel: PJSIP/13-0000114c +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479563.9833 +DestLinkedid: 1724479553.9825 +DialStatus: RINGING + + +09:06:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000114d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724479563.9834 +Linkedid: 1724479553.9825 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +09:06:07 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: RINGTIME_MS +Value: 3361 +DestChannel: Local/10@from-queue-00000a87;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479563.9830 +DestLinkedid: 1724479553.9825 +DialStatus: RINGING +Device: PJSIP/10 +State: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:06:07 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 55 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME +Value: 4 +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing + + +09:06:07 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +DestChannel: Local/12@from-queue-00000a85;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479563.9826 +DestLinkedid: 1724479553.9825 +DialStatus: RINGING +Device: PJSIP/12 +State: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 332 +LastCall: 1724479434 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:06:10 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-0000114c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: DIALEDPEERNUMBER +Value: 13/sip +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 411 +LastCall: 1724479350 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:06:10 + +Event: VarSet +Privilege: dia +Channel: PJSIP/13-0000114c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 2 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: __MACRO_RESULT +Value: +Extension: s +Application: Set +AppData: __MACRO_RESULT= + + +09:06:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:06:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000114c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +09:06:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000114c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: MacroExit +AppData: + + +09:06:10 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +DestChannel: PJSIP/13-0000114c +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 + + +09:06:10 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-queue-00000a86;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +BridgeUniqueid: fe548002-ba3a-40b1-8fad-f3f31bfe6b6d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: f3fb2a1c-75ad-4f58-a976-4a2aea596893 + + +09:06:10 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/12@from-queue-00000a85;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479563.9826 +DestLinkedid: 1724479553.9825 +DialStatus: CANCEL + + +09:06:10 + +Event: DialEnd +Privilege: call,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/10-0000114d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479563.9830 +DestLinkedid: 1724479553.9825 +DialStatus: CANCEL +Device: Local/10@from-queue +State: NOT_INUSE + + +09:06:11 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: NOT_INUSE +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_CONTEXT +Value: ext-local +Queue: 194 +Position: 1 +Count: 0 + + +09:06:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_EXTEN +Value: +DestChannel: Local/13@from-queue-00000a86;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479563.9828 +DestLinkedid: 1724479553.9825 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 7 +RingTime: 7 + + +09:06:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:06:11 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: fe254d15-736b-4ec9-8b0e-12ea2efd5c21 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +DestChannel: PJSIP/12-0000114b +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479563.9832 +DestLinkedid: 1724479553.9825 +DialStatus: CANCEL + + +09:06:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-di +Exten: s +Priority: 55 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: ARG3 +Value: + + +09:06:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-loca +Exten: h +Priority: 1 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:06:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: fe254d15-736b-4ec9-8b0e-12ea2efd5c21 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:06:11 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/10@from-queue-00000a87;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724479563.9831 +Linkedid: 1724479553.9825 +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79539042899 +Destination: 10 +DestinationContext: ext-local +CallerID: "79539042899" <79539042899> +DestinationChannel: PJSIP/10-0000114d +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479563.9831 +UserField: +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Device: Local/10@from-queue +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 332 +LastCall: 1724479434 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:06:11 + +Event: VarSet +Privilege: d +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 332 +LastCall: 1724479434 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: fe254d15-736b-4ec9-8b0e-12ea2efd5c21 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000a85;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9854 +Source: 79539042899 +Destination: 12 +DestinationContext: ext-local +CallerID: "79539042899" <79539042899> +DestinationChannel: PJSIP/12-0000114b +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479563.9827 +UserField: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +09:06:11 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479563.9827 +Linkedid: 1724479553.9825 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9855 + + +09:06:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:06:32 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13-0000114c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: BRIDGEPVTCALLID +Value: +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +BridgeUniqueid: fe548002-ba3a-40b1-8fad-f3f31bfe6b6d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:06:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 1 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: RTPAUDIOQOS +Value: ssrc=2081516309;themssrc=170074069;lp=0;rxjitter=0.000000;rxcount=1035;txjitter=0.001000;txcount=1061;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +09:06:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000113; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +09:06:32 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479563.9833 +Linkedid: 1724479553.9825 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Cause-txt: Normal Clearing + + +09:06:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: fe548002-ba3a-40b1-8fad-f3f31bfe6b6d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: PJSIP/13 +State: NOT_INUSE + + +09:06:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a86;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Variable: MACRO_CONTEXT +Value: +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 412 +LastCall: 1724479592 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: + + +09:06:32 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479563.9829 +Linkedid: 1724479553.9825 +Cause: 16 +Variable: BRIDGEPEER +Value: 1 +BridgeUniqueid: fe +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing +Device: Local/13@from-queue +State: NOT_INUSE +Source: 79539042899 +Destination: 13 +DestinationContext: ext-local +CallerID: "79539042899" <79539042899> +DestinationChannel: PJSIP/13-0000114c +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 28 +BillableSeconds: 21 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479563.9829 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9856 + + +09:06:32 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: fe254d15-736b-4ec9-8b0e-12ea2efd5c21 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +09:06:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_EXTEN +Value: +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 7 +TalkTime: 22 +Reason: agent +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9858 + + +09:06:32 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-0000114a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479553.9825 +Linkedid: 1724479553.9825 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000250; mintxmes=085.367288; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE + + +09:06:32 + +Event: Cdr +Privilege: cdr,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-0000114a +ActionID: 9859 +AccountCode: +Source: 79539042899 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79539042899" <79539042899> +DestinationChannel: Local/10@from-queue-00000a87;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 7 +BillableSeconds: 7 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479553.9825 +UserField: + + +09:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090937 +Variable: __YEAR +Value: 2024 + + +09:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:09:37 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:09:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: 2 +Application: AGI +AppData: agi + + +09:09:39 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +CommandId: 1140341552 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:09:39 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +CommandId: 1424159015 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:09:39 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +CommandId: 818047090 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:09:39 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +CommandId: 158279707 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: DB_RESULT +Value: +Extension: 194 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +09:09:39 + +Event: VarSet +Privilege: dialpl +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +09:09:39 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: CHANEXTEN +Value: Megafon_3-0000114e +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-0000114e + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-0000114e +Variable: MACRO_DEPTH +Value: 1 + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +09:09:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 172447 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:09:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 17244797 +Linkedid: 1724479777.9835 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +09:09:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 53 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: CDR(cnum)=79506836158 +Variable: MACRO_DEPTH +Value: 1 + + +09:09:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79506836158 + + +09:09:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000114e)=TRUE + + +09:09:39 + +Event: Newexten +Privilege: dialplan, +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: MacroExit +AppData: + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: VQ_CIDPP +Value: +Extension: 194 +Application: Set +AppData: VQ_CIDPP= + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: QJOINMSG +Value: custom/Privet_23_08 + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 20 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: VQ_RETRY +Value: +Extension: 194 +Application: Set +AppData: VQ_RETRY= + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 31 +Uniqueid: 172447 +Linkedid: 1724479777.9835 +Variable: VQ_POSITION +Value: +Extension: 194 +Application: Set +AppData: VQ_POSITION= + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against dontcare +Variable: LOCAL(ARGC) +Value: 3 + + +09:09:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: s +Application: Return +AppData: +Variable: ARG3 +Value: + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ex +Exten: 194 +Priority: 35 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: GotoIf +AppData: 0?QVQANNOUNCE + + +09:09:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +09:09:48 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724479788 +Variable: QUEUEJOINTIME +Value: 1724479788 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: RINGING +Channel: Local/12@from-queue-00000a88;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479788.9836 +Linkedid: 1724479777.9835 +Queue: 194 +Position: 1 +Count: 1 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479788.9836 +Linkedid: 1724479777.9835 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479788.9836 +Linkedid: 1724479777.9835 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: __FROM_DID +Value: 79217365096 + + +09:09:48 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a88;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479788.9836 +LocalOneLinkedid: 1724479777.9835 +LocalTwoChannel: Local/12@from-queue-00000a88;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79506836158 +LocalTwoCallerIDName: 79506836158 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479788.9837 +LocalTwoLinkedid: 17 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479788.9838 +Linkedid: 1724479777.9835 +DestChannel: Local/12@from-queue-00000a88;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479788.9836 +DestLinkedid: 1724479777.9835 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +Variable: QAGENT +Value: 12 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479788.9838 +Linkedid: 1724479777.9835 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000114e + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479788.9838 +Linkedid: 1724479777.9835 +Variable: __MON_FMT +Value: wav + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n +Extension: 12 +Application: GotoIf +AppData: 1?194,1 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: __FROMQUEUEEXTEN +Value: 79506836158 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: __FROM_DID +Value: 79217365096 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: DB_RESULT +Value: +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:09:48 + +Event: Newchannel +Privilege: call,all +LocalOneChannel: Local/13@from-queue-00000a89;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479788.9838 +LocalOneLinkedid: 1724479777.9835 +LocalTwoChannel: Local/13@from-queue-00000a89;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79506836158 +LocalTwoCallerIDName: 79506836158 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479788.9839 +LocalTwoLinkedid: 1724479777.9835 +Context: from-queue +Exten: 10 +LocalOptimization: No +Channel: Local/10@from-queue-00000a8a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Priority: 1 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: __RINGTIMER +Value: 60 +DestChannel: Local/13@from-queue-00000a89;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479788.9838 +DestLinkedid: 1724479777.9835 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +DialString: Local/13@from-queue/n + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO +Value: TRUE + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479788.9840 +Linkedid: 1724479777.9835 +Variable: __TTL +Value: 64 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479788.9840 +Linkedid: 1724479777.9835 +Variable: __MOHCLASS +Value: + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479788.9840 +Linkedid: 1724479777.9835 +Variable: __DIRECTION +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 1 +Priority: 1 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: ARG1 +Value: + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479788.9837 +Variable: __TIMESTR +Value: 20240824-090937 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a88;2 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79506836158 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from +Variable: MACRO_DEPTH +Value: 2 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: MACRO_DEPTH +Value: 2 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: DB_RESULT +Value: EXTENSION + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a89;2 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: HOTDESKEXTEN +Value: 13@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: ARG1 +Value: novm + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 7950683615 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724479788 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090948 + + +09:09:48 + +Event: New +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +09:09:48 + +Event: VarSet +Privilege: dialp +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +09:09:48 + +Event: Newexten +Privilege: dialplan, +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79506836158) + + +09:09:48 + +Event: New +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79506836158-20240824-090948-1724479788.9837.wav,abi(), + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:09:48 + +Event: VarSet +Privilege: dialpl +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +09:09:48 + +Event: VarSet +Privilege: dialplan, +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=12) + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MA +Value: 2 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 +Variable: THISDIAL +Value: PJSIP/12 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: ds +Application: NoOp +AppData: Debug +Variable: MACRO_DEPTH +Value: 2 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: +Value: PJSIP/12/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +09:09:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 1 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: ANSWEREDTIME +Value: + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000114f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистра +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479788.9842 +Linkedid: 1724479777.9835 +Variable: __KEEPCID +Value: TRUE + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000114f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479788.9842 +Linkedid: 1724479777.9835 +Variable: __YEAR +Value: 2024 + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000114f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479788.9842 +Linkedid: 1724479777.9835 +Variable: __RVOL_MODE +Value: TRUE + + +09:09:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000114f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479788.9842 +Linkedid: 1724479777.9835 +Variable: __FROM_DID +Value: 79217365096 + + +09:09:49 + +Event: Newexten +Privilege: +Channel: PJSIP/12-0000114f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724479788.9842 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +09:09:49 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000a89;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479788.9838 +Linkedid: 1724479777.9 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +LocalOneChannel: Local/10@from-queue-00000a8a;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479788.9840 +LocalOneLinkedid: 1724479777.9835 +LocalTwoChannel: Local/10@from-queue-00000a8a;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79506836158 +LocalTwoCallerIDName: 79506836158 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479788.9841 +LocalTwoLinkedid: 1724479777.9835 +LocalOptimization: No +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +DestChannel: Local/10@from-queue-00000a8a;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479788.9840 +DestLinkedid: 1724479777.9835 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +Extension: s +Application: Set +AppData: __DAY=24 +DialString: Local/10@from-queue/n + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 795068361 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: __TIMESTR +Value: 20240824-090948 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-090948 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPT +Value: 1 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: LOCAL(ARG3) +Value: 13 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79506836158) + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79506836158-20240824-090948-1724479788.9839.wav + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7950683615 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 17244 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: THISDIAL +Value: PJSIP/13/sip +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.983 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +09:09:49 + +Event: V +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479788.9839 +Linkedid: 1 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001150 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-i +Exten: s +Priority: 1 +Uniqueid: 1724479788.9843 +Linkedid: 1724479777.9835 +Variable: DIALEDPEERNUMBER +Value: 13/sip +DestChannel: PJSIP/12-0000114f +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479788.9842 +DestLinkedid: 1724479777.9835 +DialString: 12/sip +Device: Local/12@from-queue +State: INUSE + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001150 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479 +Linkedid: 1724479777.9835 +Variable: __TIMESTR +Value: 20240824-090948 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001150 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479788.9843 +Linkedid: 1724479777.9835 +Variable: __SIGNORE +Value: TRUE + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001150 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479788.9843 +Linkedid: 1724479777.9835 +Variable: __MOHCLASS +Value: + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001150 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Реги +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724479788.9843 +Linkedid: 1724479777.9835 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +09:09:49 + +Event: DialBegin +Privilege: call,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479788.9843 +Linkedid: 1724479777.9835 +DestChannel: Local/12@from-queue-00000a88;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479788.9836 +DestLinkedid: 1724479777.9835 +DialStatus: RINGING +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-que +Exten: 10 +Priority: 2 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/13@from-queue-00000a89;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479788.9838 +DestLinkedid: 1724479777.9835 +DialStatus: RINGING +Extension: 10 +Application: Set +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG4 +Value: 0 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479788.9841 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: CHANEXTENCONTEXT +Value: 10@from-queue-00000a8a;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000a8a;2 + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@fr +Variable: MACRO_DEPTH +Value: 2 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-use +Exten: s +Priority: 11 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: CALLERID(number)=79506836158 +Variable: MACRO_DEPTH +Value: 2 + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 17244 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: CDR(cnum)=79506836158 +Variable: MACRO_DEPTH +Value: 2 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: RingGroupMethod=none +Variable: MACRO_DEPTH +Value: 1 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 795 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: Set +AppData: __FROMEXTEN=79506836158 +Variable: MACRO_DEPTH +Value: 1 + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordch +Priority: 11 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479 +Linkedid: 1724479777.9835 +Variable: __CALLFILENAME +Value: external-10-79506836158-20240824-090948-1724479788.9841 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79506836158-20240824-090948-1724479788.9841 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000a8a;2 +Variable: __RECORD_ID +Value: Local/10@from- + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: ARG3 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_DEPTH +Value: 2 + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 7950 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: dstring +Application: Set +AppData: DEVICES=10 +Variable: DEVICES +Value: 10 + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 33 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_3 + + +09:09:49 + +Event: VarSet +Privilege: di +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +09:09:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +09:09:49 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/10-00001151 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: PROGRESSTIME_MS +Value: + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001151 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479788.9844 +Linkedid: 1724479777.9835 +Variable: __MON_FMT +Value: wav + + +09:09:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001151 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479788.9844 +Linkedid: 1724479777.9835 +Variable: __FROMQ +Value: true + + +09:09:49 + +Event: DialBegin +Privilege: call,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/10-00001151 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: + + +09:09:49 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Device: Local/10@from-queue +State: INUSE +DestChannel: Local/10@from-queue-00000a8a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479788.9840 +DestLinkedid: 1724479777.9835 +DialStatus: RINGING + + +09:09:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001150 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724479788.9843 +Linkedid: 1724479777.9835 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +09:09:51 + +Event: DialState +Privilege: call,all +Device: PJSIP/13 +State: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 412 +LastCall: 1724479592 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: RINGTIME_MS +Value: 3468 +DestChannel: Local/13@from-queue-00000a89;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479788.9838 +DestLinkedid: 1724479777.9835 +DialStatus: RINGING + + +09:09:52 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 3769 +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +DestChannel: PJSIP/12-0000114f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479788.9842 +DestLinkedid: 1724479777.9835 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 332 +LastCall: 1724479434 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:09:52 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/10-00001151 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724479788.9844 +Linkedid: 1724479777.9835 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing + + +09:09:52 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: RINGTIME_MS +Value: 4422 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: Local/10@from-queue-00000a8a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479788.9840 +DestLinkedid: 1724479777.9835 +DialStatus: RINGING + + +09:09:54 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/13 +State: INUSE +Channel: PJSIP/13-00001150 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479788.9843 +Linkedid: 1724479777.9835 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +09:09:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001150 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 172 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 412 +LastCall: 1724479592 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Set +AppData: __MACRO_RESULT= + + +09:09:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 6 +Uniqueid: 1724479788.9843 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal + + +09:09:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 172447977 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000114e)= + + +09:09:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001150 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724479788.9843 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:09:54 + +Event: BridgeCreate +Privilege: +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +DestChannel: PJSIP/13-00001150 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724479788.9843 +DestLinkedid: 1724479777.9835 +DialStatus: ANSWER + + +09:09:54 + +Event: DialEnd +Privilege: call,all +Device: Local/13@from-queue +State: INUSE +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистра +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000a8a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479788.9840 +DestLinkedid: 1724479777.9835 +DialStatus: CANCEL + + +09:09:54 + +Event: QueueCallerLeave +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479788.9840 +Linkedid: 1724479777.9835 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000a8a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479788.9840 +DestLinkedid: 1724479777.9835 +DialStatus: CANCEL +Device: Queue +State: NOT_INUSE + + +09:09:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: ARG1 +Value: novm +Device: Local/10@from-queue +State: NOT_INUSE +DestChannel: PJSIP/12-0000114f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479788.9842 +DestLinkedid: 1724479777.9835 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 6 +RingTime: 6 +BridgeUniqueid: 539b1248-d00f-450d-a399-67e685524f67 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL + + +09:09:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 795068 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: ARG4 +Value: + + +09:09:55 + +Event: VarSet +Privilege: dialplan,all +Exten: h +Context: ext-local +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:09:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-on +Exten: s +Priority: 55 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +DestChannel: PJSIP/10-00001151 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79506836158 +DestConnectedLineName: 79506836158 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479788.9844 +DestLinkedid: 1724479777.9835 +DialStatus: CANCEL + + +09:09:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: ARG3 +Value: + + +09:09:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:09:55 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/10-00001151 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724479788.9842 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 696f5f65-59f6-46d9-bccb-c11b93907b77 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 26 +Cause-txt: Answered elsewhere + + +09:09:55 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: NOT_INUSE +Channel: Local/12@from-queue-00000a88;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479788.9837 +Linkedid: 1724479777.9835 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Queue: 195 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:09:55 + +Event: BridgeEnter +Privilege: call,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: 539b1248-d00f-450d-a399-67e685524f67 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9864 +Device: Local/12@from-queue +State: NOT_INUSE +Source: 79506836158 +Destination: 12 +DestinationContext: ext-local +CallerID: "79506836158" <79506836158> +DestinationChannel: PJSIP/12-0000114f +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479788.9837 +UserField: + + +09:09:55 + +Event: Newexten +Privilege: dialplan,all +BridgeUniqueid: 539b1248-d00f-450d-a399-67e685524f67 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000a8a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Source: 79506836158 +Destination: 10 +DestinationContext: ext-local +CallerID: "79506836158" <79506836158> +DestinationChannel: PJSIP/10-00001151 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479788.9841 +UserField: + + +09:09:55 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479788.9841 +Linkedid: 1724479777.9835 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9865 + + +09:10:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79506836158 +ConnectedLineName: 79506836158 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479788.9838 +Linkedid: 1724479777.9835 +Variable: RTPAUDIOQOSJITTERBRIDGED +Value: minrxjitter=000.000000;maxrxjitter=000.002875;avgrxjitter=000.000175;stdevrxjitter=000.000333;mintxjitter=000.000750;maxtxjitter=000.004000;avgtxjitter=000.001771;stdevtxjitter=000.001084; + + +09:10:11 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 172 +Linkedid: 1724479777.9835 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000333; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; + + +09:10:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: MACRO_EXTEN +Value: h +BridgeUniqueid: 539b1248-d00f-450d-a399-67e685524f67 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:10:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +09:10:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000114e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479777.9835 +Linkedid: 1724479777.9835 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mi +BridgeUniqueid: 539b1248-d00f-450d-a399-67e685524f67 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 + + +09:10:12 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: ARG4 +Value: + + +09:10:12 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:10:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001150 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79506836158 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479788.9843 +Linkedid: 1724479777.9835 +Variable: RTPAUDIOQOS +Value: ssrc=1073532807;themssrc=226104067;lp=0;rxjitter=0.000000;rxcount=832;txjitter=0.000750;txcount=853;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Extension: s +Application: GotoIf +AppData: 1?theend +Source: 79506836158 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79506836158" <79506836158> +DestinationChannel: Local/10@from-queue-00000a8a;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 6 +BillableSeconds: 6 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479777.9835 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9867 +BridgeUniqueid: 696f5f65-59f6-46d9-bccb-c11b93907b77 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:10:12 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a89;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: 696f5f65-59f6-46d9-bccb-c11b93907b77 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: PJSIP/13 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: + + +09:10:12 + +Event: DeviceStateChange +Privilege: call,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506836158 +CallerIDName: 79506836158 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724479788.9839 +Linkedid: 1724479777.9835 +Variable: MACRO_PRIORITY +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9869 +Source: 79506836158 +Destination: 13 +DestinationContext: ext-local +CallerID: "79506836158" <79506836158> +DestinationChannel: PJSIP/13-00001150 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 23 +BillableSeconds: 17 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479788.9839 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 413 +LastCall: 1724479811 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Device: Local/13@from-queue +State: NOT_INUSE + + +09:10:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:10:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:10:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-091027 +Variable: __YEAR +Value: 2024 + + +09:10:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:10:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:10:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:10:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:10:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:10:27 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:10:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: 2 +Application: AGI +AppData: agi + + +09:10:29 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +CommandId: 1852709396 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:10:29 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +CommandId: 1212924210 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:10:29 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +CommandId: 835503477 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: DB_RESULT +Value: +Extension: 194 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +09:10:29 + +Event: VarSet +Privilege: dialpl +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +09:10:29 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: CHANEXTEN +Value: Megafon_3-00001152 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001152 + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001152 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +09:10:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 172447 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:10:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 17244798 +Linkedid: 1724479827.9845 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +09:10:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 53 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: CDR(cnum)=79062026711 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79062026711 + + +09:10:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001152)=TRUE + + +09:10:29 + +Event: Newexten +Privilege: dialplan, +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: MacroExit +AppData: + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: VQ_CIDPP +Value: +Extension: 194 +Application: Set +AppData: VQ_CIDPP= + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: QJOINMSG +Value: custom/Privet_23_08 + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 20 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: VQ_RETRY +Value: +Extension: 194 +Application: Set +AppData: VQ_RETRY= + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 31 +Uniqueid: 172447 +Linkedid: 1724479827.9845 +Variable: VQ_POSITION +Value: +Extension: 194 +Application: Set +AppData: VQ_POSITION= + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against dontcare +Variable: LOCAL(ARGC) +Value: 3 + + +09:10:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: s +Application: Return +AppData: +Variable: ARG3 +Value: + + +09:10:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ex +Exten: 194 +Priority: 35 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: GotoIf +AppData: 0?QVQANNOUNCE + + +09:10:29 + +Event: SuccessfulAuth +Privilege: security,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +EventTV: 2024-08-24T09 +Severity: Informational +Service: AMI +EventVersion: 1 +AccountID: admin +SessionID: 0x7f8744021fe0 +LocalAddress: IPV4/TCP/0.0.0.0/5038 +RemoteAddress: IPV4/TCP/127.0.0.1/36300 +UsingPassword: 0 +SessionTV: 2024-08-24T09 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Extension: 194 +Application: QueueLog +AppData: 194,1724479827.9845,NONE,DID,79217365096 + + +09:10:38 + +Event: Newexten +Privilege: dia +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:10:38 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: QUEUEJOINTIME +Value: 1724479838 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING +Queue: + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479838.9846 +Linkedid: 1724479827.9845 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479838.9846 +Linkedid: 1724479827.9845 +Variable: __RINGINGSENT +Value: TRUE + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479838.9846 +Linkedid: 1724479827.9845 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: __FROMQUEUEEXTEN +Value: 79062026711 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: __YEAR +Value: 2024 + + +09:10:38 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a8b;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479838.9846 +LocalOneLinkedid: 1724479827.9845 +LocalTwoChannel: Local/12@from-queue-00000a8b;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79062026711 +LocalTwoCallerIDName: 79062026711 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479838.9847 +LocalTwoLinkedid: 1724479827.9845 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000a8b;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479838.9846 +DestLinkedid: 1724479827.9845 +Queue: 194 +Interface: Local/12@from-qu + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479838.9848 +Linkedid: 1724479827.9845 +DestChannel: Local/12@from-queue-00000a8b;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479838.9846 +DestLinkedid: 1724479827.9845 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 792173 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479838.9848 +Linkedid: 1724479827.9845 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479838.9848 +Linkedid: 1724479827.9845 +Variable: __DIRECTION +Value: + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001152 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: __TIMESTR +Value: 20240824-091027 + + +09:10:38 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a8c;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479838.9848 +LocalOneLinkedid: 1724479827.9845 +LocalTwoChannel: Local/13@from-queue-00000a8c;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79062026711 +LocalTwoCallerIDName: 79062026711 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479838.9849 +LocalTwoLinkedid: 1724479827.9845 +LocalOptimization: No +DestChannel: + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;1 +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479838.9850 +Linkedid: 1724479827.9845 +DestChannel: Local/13@from-queue-00000a8c;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479838.9848 +DestLinkedid: 1724479827.9845 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 7921 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479838.9850 +Linkedid: 1724479827.9845 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479838.9850 +Linkedid: 1724479827.9845 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479838.9851 +Linkedid: 1724479 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: __MON_FMT +Value: wav + + +09:10:38 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a8d;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479838.9850 +LocalOneLinkedid: 1724479827.9845 +LocalTwoChannel: Local/10@from-queue-00000a8d;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79062026711 +LocalTwoCallerIDName: 79062026711 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479838.9851 +LocalTwoLinkedid: 1724479827.9845 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 4 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +DestChannel: Local/10@from-queue-00000a8d;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479838.9850 +DestLinkedid: 1724479827.9845 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 13 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: 13 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) +Variable: __RINGTIMER +Value: 60 + + +09:10:38 + +Event: Newexte +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO +Value: 1724479838.9849 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479838.9849 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000a8c;2 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: HOTDESCKCHAN +Value: 13@from-queue-00000a8c;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000a8c;2 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: s +Application: ExecIf +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-use +Exten: s +Priority: 30 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79062026711 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 3 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: __FROMQ +Value: true +Extension: 10 +Application: GotoIf +AppData: 0?hangup + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 2 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: 10 +Application: ExecIf +AppData: 0?Set(__C +Variable: __RINGTIMER +Value: 60 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG5 +Value: 0 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479838.9851 +Variable: TOUCH_MONITOR +Value: 1724479838.9851 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000a8d;2 +Variable: CHANEXTENCONTEXT +Value: 10@from-queue-00000a8d;2 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000a8d;2 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724479838.9851 +Linkedid: 17244798 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: CALLERID(number)=79062026711 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;1 +ChannelState: 0 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 2 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:10:38 + +Event: Newexten +Privilege: dialplan +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: Set +AppData: __FROMEXTEN=79062026711 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +09:10:38 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 1 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79062026711-20240824-091038-1724479838.9849 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 7 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000a8c;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000a8c;2 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG +Value: + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: +Extension: exten +Application: Return +AppData: + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: DEXT +Variable: MACRO_DEPTH +Value: 2 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: dstring +Application: Set +AppData: DEVICES=13 +Variable: DEVICES +Value: 13 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: Debug + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: dstring +Application: ExecIf +AppData: 0? +Variable: MACRO_DEPTH +Value: 2 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial +Exten: s +Priority: 28 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 44 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:38 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 +Variable: MACRO_DEPTH +Value: 10 + + +09:10:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:10:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 172447983 +Linkedid: 1724479827.9845 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 7 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-091038 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79062026711 and 10 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: CALLEE +Value: yes + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: LOCAL(ARGC) +Value: 3 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: MACRO_DEPTH +Value: 1 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79062026711) + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordche +Priority: 24 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79062026711-20240824-091038-1724479838.9851.wav +Variable: MACRO_DEPTH +Value: 1 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub- +Exten: exten +Priority: 12 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-v +Exten: s +Priority: 7 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 3 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001153 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479838.9852 +Linkedid: 1 +Variable: __REC_POLICY_MODE +Value: YES + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001153 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479838.9852 +Linkedid: 1724479827.9845 +Variable: __RINGTIMER +Value: 60 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001153 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479838.9852 +Linkedid: 1724479827.9845 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001153 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724479838.9852 +Linkedid: 1724479827.9845 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479838.9852 +Linkedid: 1724479827.9845 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +09:10:39 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 13 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479838.9848 +Linkedid: 1724479827.9845 +Variable: __FROMQ +Value: true +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +DestChannel: PJSIP/13-00001153 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479838.9852 +DestLinkedid: 1724479827.9845 +DialString: 13/sip + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +DestChannel: Local/13@from-queue-00000a8c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479838.9848 +DestLinkedid: 1724479827.9845 +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 17244798 +Linkedid: 1724479827.9845 +Variable: DB_RESULT +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: DSTRING +Value: PJSIP/10/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: PJSIP/10/sip + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:10:39 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: +Priority: 1 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: DB_RESULT +Value: 0 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG3 +Value: 0 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Se +AppData: user-callerid, + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000a8b;2 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79062026711 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: HOTDESKCALL=0 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 790620267 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: DIAL +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479838.9853 +Linkedid: 1724479827.9845 +Variable: PROGRESSTIME_MS +Value: + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479838.9853 +Linkedid: 1724479827.9845 +Variable: __REC_POLICY_MODE +Value: YES +Extension: s +Application: Set +AppData: CDR(cnum)=79062026711 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001154 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479838.9853 +Linkedid: 1724479827.9845 +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001154 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 172 +Linkedid: 1724479827.9845 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001154 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724479838.9853 +Linkedid: 1724479827.9845 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/10-00001154 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001154 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479838.9853 +Linkedid: 1724479827.9845 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 4 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79062026711 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 17244 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79062026711 and 12 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79062026711-20240824-091038 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 790 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:10:39 + +Event: Newe +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DB_RESULT +Value: 12 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: LOOPCNT +Value: 1 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: GOSUB_RETVAL +Value: +Extension: dstring +Application: Return +AppData: + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79062026711 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724 +Linkedid: 1724479827.9845 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 7906202 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:39 + +Event: VarSet +Privilege: dialpl +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +09:10:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 79217365096 +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Variable: __KEEPCID +Value: TRUE +DestChannel: Local/10@from-queue-00000a8d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479838.9850 +DestLinkedid: 1724479827.9845 +DialString: 10/sip +DialStatus: RINGING + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001155 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Variable: __YEAR +Value: 2024 + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001155 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Variable: __SIGNORE +Value: TRUE + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001155 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724479827.9845 +Variable: __MOHCLASS +Value: + + +09:10:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001155 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +09:10:39 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479838.9846 +Linkedid: 1724479827.9845 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +Device: Local/10@from-queue +State: INUSE +DestChannel: PJSIP/12-00001155 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479838.9854 +DestLinkedid: 1724479827.9845 +DialString: 12/sip + + +09:10:39 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +DestChannel: Local/12@from-queue-00000a8b;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479838.9846 +DestLinkedid: 1724479827.9845 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE + + +09:10:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001153 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724479838.9852 +Linkedid: 1724479827.9845 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +09:10:41 + +Event: DialState +Privilege: call,all +Device: PJSIP/13 +State: RINGING +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: RINGTIME_MS +Value: 3303 +DestChannel: Local/13@from-queue-00000a8c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479838.9848 +DestLinkedid: 1724479827.9845 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 413 +LastCall: 1724479811 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:10:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001154 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724479838.9853 +Linkedid: 1724479827.9845 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +09:10:42 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: RINGING +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 53 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: RINGTIME_MS +Value: 3542 +DestChannel: Local/10@from-queue-00000a8d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479838.9850 +DestLinkedid: 1724479827.9845 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:10:42 + +Event: DialState +Privilege: call,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 4223 +DestChannel: PJSIP/12-00001155 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479838.9854 +DestLinkedid: 1724479827.9845 +DialStatus: RINGING + + +09:10:42 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: 12 +Context: ext-local +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 332 +LastCall: 1724479434 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-091046 +Variable: __YEAR +Value: 2024 + + +09:10:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:10:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:10:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:10:46 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:10:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001155 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/12 +State: INUSE + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 332 +LastCall: 1724479434 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/12-00001155 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +09:10:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001155 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:10:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001155 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001152)= + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001155 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=12/sip + + +09:10:46 + +Event: Newstate +Privilege: call,all +Channel: Local/12@from-queue-00000a8b;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/12-00001155 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724479838.9854 +DestLinkedid: 1724479827.9845 +DialStatus: ANSWER +BridgeUniqueid: 46e57e75-1689-4e80-b4b8-15a108aabbe4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:10:46 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +BridgeUniqueid: 46e57e75-1689-4e80-b4b8-15a108aabbe4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +DestChannel: Local/10@from-queue-00000a8d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479838.9850 +DestLinkedid: 1724479827.9845 +DialStatus: CANCEL +Device: Local/12@from-queue +State: INUSE + + +09:10:46 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/10@from-queue-00000a8d;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479838.9850 +Linkedid: 1724479827.9845 +DestChannel: Local/10@from-queue-00000a8d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479838.9850 +DestLinkedid: 1724479827.9845 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Queue: 194 +Position: 1 +Count: 0 +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Variable: ARG1 +Value: novm +DestChannel: Local/12@from-queue-00000a8b;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479838.9846 +DestLinkedid: 1724479827.9845 +DialStatus: CANCEL +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 8 +RingTime: 8 + + +09:10:46 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/10-00001154 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479838.9846 +Linkedid: 1724479827.9845 +Variable: ARG1 +Value: 1 +Device: Local/10@from-queue +State: NOT_INUSE +BridgeUniqueid: 4d7afeff-f434-4c81-b1d3-7b9f98c26605 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9870 + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 4d7afeff-f434-4c81-b1d3-7b9f98c26605 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Device: PJSIP/10 +State: NOT_INUSE +Variable: ARG5 +Value: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9871 + + +09:10:46 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 79062026711 +Destination: 10 +DestinationContext: ext-local +CallerID: "79062026711" <79062026711> +DestinationChannel: PJSIP/10-00001154 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 8 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479838.9851 +UserField: +Hint: PJSIP/13&Custom + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: DIALSTATUS +Value: CANCEL +DestChannel: PJSIP/13-00001153 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479838.9852 +DestLinkedid: 1724479827.9845 +DialStatus: CANCEL +Extension: s +Application: GotoIf +AppData: 1?theend + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: ARG2 +Value: + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-loca +Exten: h +Priority: 1 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_IN_HANGUP +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9872 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:10:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE + + +09:10:46 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/10@from-queue-00000a8d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479838.9851 +Linkedid: 1724479827.9845 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Source: 79062026711 +Destination: 13 +DestinationContext: ext-local +CallerID: "79062026711" <79062026711> +DestinationChannel: PJSIP/13-00001153 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 8 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479838.9849 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 413 +LastCall: 1724479811 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:10:47 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 790620 +CallerIDName: 79062026711 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479838.9849 +Linkedid: 1724479827.9845 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9874 +BridgeUniqueid: 46e57e75-1689-4e80-b4b8-15a108aabbe4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +09:10:47 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: BRIDGEPVTCALLID +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9875 + + +09:10:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:10:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: 2 +Application: AGI +AppData: agi + + +09:10:47 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +CommandId: 566209327 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:10:47 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +CommandId: 2087391395 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:10:47 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +CommandId: 863523800 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:10:47 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +CommandId: 1099133790 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +09:10:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: DB_RESULT +Value: +Extension: 194 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +09:10:47 + +Event: VarSet +Privilege: dialpl +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +09:10:47 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: CHANEXTEN +Value: Megafon_3-00001156 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001156 + + +09:10:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001156 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:10:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +09:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 172447 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 17244798 +Linkedid: 1724479846.9855 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +09:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 53 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: CDR(cnum)=79082957865 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79082957865 + + +09:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001156)=TRUE + + +09:10:48 + +Event: Newexten +Privilege: dialplan, +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: MacroExit +AppData: + + +09:10:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: VQ_CIDPP +Value: +Extension: 194 +Application: Set +AppData: VQ_CIDPP= + + +09:10:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: QJOINMSG +Value: custom/Privet_23_08 + + +09:10:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 20 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: VQ_RETRY +Value: +Extension: 194 +Application: Set +AppData: VQ_RETRY= + + +09:10:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 31 +Uniqueid: 172447 +Linkedid: 1724479846.9855 +Variable: VQ_POSITION +Value: +Extension: 194 +Application: Set +AppData: VQ_POSITION= + + +09:10:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:10:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against dontcare +Variable: LOCAL(ARGC) +Value: 3 + + +09:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: s +Application: Return +AppData: +Variable: ARG3 +Value: + + +09:10:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ex +Exten: 194 +Priority: 35 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: GotoIf +AppData: 0?QVQANNOUNCE + + +09:10:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +09:10:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +09:10:56 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724479856 +Variable: QUEUEJOINTIME +Value: 1724479856 + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: RINGING +Channel: Local/13@from-queue-00000a8e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479856.9856 +Linkedid: 1724479846.9855 +Queue: 194 +Position: 1 +Count: 1 +Class: default +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479856.9856 +Linkedid: 1724479846.9855 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479856.9856 +Linkedid: 1724479846.9855 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: __FROM_DID +Value: 79217365096 + + +09:10:56 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a8e;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479856.9856 +LocalOneLinkedid: 1724479846.9855 +LocalTwoChannel: Local/13@from-queue-00000a8e;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082957865 +LocalTwoCallerIDName: 79082957865 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479856.9857 +LocalTwoLinkedid: 17 + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue- +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479856.9858 +Linkedid: 1724479846.9855 +DestChannel: Local/13@from-queue-00000a8e;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479856.9856 +DestLinkedid: 1724479846.9855 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;1 +ChannelState: 0 +ChannelStateDesc: Dow +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479856.9858 +Linkedid: 1724479846.9855 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479856.9858 +Linkedid: 1724479846.9855 +Variable: __DAY +Value: 24 + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 17 +Linkedid: 1724479846.9855 +Variable: __NODEST +Value: 194 + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846. +Variable: __MOHCLASS +Value: + + +09:10:56 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a8f;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479856.9858 +LocalOneLinkedid: 1724479846.9855 + + +09:10:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 3 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +DestChannel: Local/10@from-queue-00000a8f;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479856.9858 +DestLinkedid: 1724479846.9855 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 10 +Application: Set +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +09:10:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.985 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG4 +Value: 0 + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724479856.9859 + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: CHANEXTENCONTEXT +Value: 10@from-queue-00000a8f;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000a8f;2 + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000a8f;2 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: CALLERID(number)=79082957865 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: RingGroupMethod=none +Variable: RingGroupMethod +Value: 1 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1 +Linkedid: 1724479846.9855 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: __FROMEXTEN=79082957865 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:10:57 + +Event: V +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 17 +Linkedid: 1724479846.9855 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +09:10:57 + +Event: Newexten +Privilege: +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79082957865-20240824-091056-1724479856.9859 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000a8f;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000a8f;2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG3 +Value: + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 7 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: dstring +Application: Set +AppData: DEVICES=10 +Variable: DEVICES +Value: 10 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstrin +Priority: 9 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 790829 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 4 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: __FROMQ +Value: true +Extension: 13 +Application: GotoIf +AppData: 1?194,1 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: DB_RESULT +Value: 0 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG1 +Value: novm + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +09:10:57 + +Event: VarSet +Privilege: dialpl +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: AMPUSER=79082957865 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-on +Exten: s +Priority: 39 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 7908 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: Newchannel +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: PROGRESSTIME_MS +Value: + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001157 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479856.9860 +Linkedid: 1724479846.9855 +Variable: __MON_FMT +Value: wav + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001157 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479856.9860 +Linkedid: 1724479846.9855 +Variable: __RINGTIMER +Value: 60 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001157 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479856.9860 +Linkedid: 1724479846.9855 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001157 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724479856.9860 +Linkedid: 17244 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001157 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479856.986 +Linkedid: 1724479846.9855 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: ext-local + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: __PICKUPMARK +Value: 13 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 7908295786 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-091056 +Variable: MACRO_DEPTH +Value: 1 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARGC) +Value: 3 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: +Linkedid: 1724479846.9855 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: __REC_POLICY_MODE +Value: YES + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79082957865) +Variable: MACRO_DEPTH +Value: 1 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79082957865-20240824-091056-1724479856.9857.wav +Variable: MACRO_DEPTH +Value: 1 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: MACRO_DEPTH +Value: PJSIP/13/sip + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +09:10:57 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724479856.9857 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: RINGTIME +Value: + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001158 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 172447 +Linkedid: 1724479846.9855 +Variable: __MIXMON_ID +Value: + + +09:10:57 + +Event: VarSet +Privilege: di +Channel: PJSIP/13-00001158 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Variable: __TTL +Value: 63 + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001158 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Реги +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Variable: __FROMQUEUEEXTEN +Value: 79082957865 + + +09:10:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001158 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +09:10:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001158 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +09:10:57 + +Event: DialBegin +Privilege: call,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/13-00001158 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082957865 +DestConnectedLineName: 79082957865 +DestLanguage: ru +DestAccountCode: +DestContext: func-app +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479856.9858 +DestLinkedid: 1724479846.9855 +DialString: 10/sip +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE + + +09:10:57 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/13@from-queue-00000a8e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082957865 +DestConnectedLineName: 79082957865 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479856.9856 +DestLinkedid: 1724479846.9855 +DialStatus: RINGING + + +09:10:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:10:59 + +Event: BridgeLe +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479838.9846 +Linkedid: 1724479827.9845 +Variable: BRIDGEPVTCALLID +Value: +DestChannel: Local/12@from-queue-00000a8b;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79062026711 +DestConnectedLineName: 79062026711 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479838.9846 +DestLinkedid: 1724479827.9845 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 8 +TalkTime: 13 +Reason: caller + + +09:10:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479827 +Linkedid: 1724479827.9845 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +09:10:59 + +Event: VarSet +Privilege: call,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 46e57e75-1689-4e80-b4b8-15a108aabbe4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing + + +09:10:59 + +Event: VarSet +Privilege: +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_EXTEN +Value: 12 + + +09:10:59 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_EXTEN +Value: +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Source: 79062026711 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79062026711" <79062026711> +DestinationChannel: Local/12@from-queue-00000a8b;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-0 + + +09:10:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +09:10:59 + +Event: VarSet +Privilege: dia +Channel: PJSIP/Megafon_3-00001152 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: 46e57e75-1689-4e80-b4b8-15a108aabbe4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:10:59 + +Event: VarSet +Privilege: di +Channel: PJSIP/12-00001155 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79062026711 +ConnectedLineName: 79062026711 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479838.9854 +Linkedid: 1724479827.9845 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000243; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Device: Local/12@from-queue +State: NOT_INUSE +Cause: 16 +Cause-txt: Normal Clearing + + +09:10:59 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479827.9845 +Linkedid: 1724479827.9845 +Variable: RTPAUDIOQOSMES +Value: 1 +Device: PJSIP/12 +State: NOT_INUSE +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9876 + + +09:10:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a8b;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479838 +Linkedid: 1724479827.9845 +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: 46e57e75-1689-4e80-b4b8-15a108aabbe4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 9878 +Source: 79062026711 +Destination: 12 +DestinationContext: ext-local +CallerID: "79062026711" <79062026711> +DestinationChannel: PJSIP/12-00001155 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 21 +BillableSeconds: 12 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479838.9847 +UserField: +Variable: MACRO_DEPTH + + +09:10:59 + +Event: DeviceStateChange +Privilege: call,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062026711 +CallerIDName: 79062026711 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479838.9847 +Linkedid: 1724479827.9845 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9879 +Device: Local/12@from-queue +State: NOT_INUSE + + +09:10:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001158 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +09:10:59 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: RINGTIME_MS +Value: 3016 +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +DestChannel: Local/13@from-queue-00000a8e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082957865 +DestConnectedLineName: 79082957865 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479856.9856 +DestLinkedid: 1724479846.9855 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 413 +LastCall: 1724479811 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:11:00 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/10-00001157 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724479856.9860 +Linkedid: 1724479846.9855 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing + + +09:11:00 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: RINGTIME_MS +Value: 3426 +DestChannel: Local/10@from-queue-00000a8f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082957865 +DestConnectedLineName: 79082957865 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479856.9858 +DestLinkedid: 1724479846.9855 +DialStatus: RINGING + + +09:11:03 + +Event: DeviceStateChange +Privilege: +Channel: PJSIP/13-00001158 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +09:11:03 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 413 +LastCall: 1724479811 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/13-00001158 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +09:11:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001158 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:11:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001158 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001156)= + + +09:11:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001158 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +09:11:03 + +Event: B +Privilege: call,all +Channel: PJSIP/13-00001158 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-00001158 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082957865 +DestConnectedLineName: 79082957865 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724479856.9861 +DestLinkedid: 1724479846.9855 +DialStatus: ANSWER +BridgeUniqueid: 28fed2b7-3f48-436c-ae66-a2a888e0b2a6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: INUSE + + +09:11:03 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: 28fed2b7-3f48-436c-ae66-a2a888e0b2a6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: BRIDGEPVTCALLID +Value: 9a21efe4-92f5-4085-bb4e-1358fb5d1d90 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000a8e;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082957865 +DestConnectedLineName: 79082957865 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479856.9856 +DestLinkedid: 1724479846.9855 +DialStatus: ANSWER + + +09:11:03 + +Event: AgentConnect +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +DestChannel: Local/10@from-queue-00000a8f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082957865 +DestConnectedLineName: 79082957865 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479856.9858 +DestLinkedid: 1724479846.9855 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 + + +09:11:03 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 8f9ca375-a983-4f53-9411-634c7f31b0e8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +DestChannel: PJSIP/10-00001157 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082957865 +DestConnectedLineName: 79082957865 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479856.9860 +DestLinkedid: 1724479846.9855 +DialStatus: CANCEL +Device: Local/10@from-queue +State: NOT_INUSE +Variable: ARG2 +Value: 10 + + +09:11:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479856.9859 +Linkedid: 172447 +Variable: ARG4 +Value: +Cause: 26 +Cause-txt: Answered elsewhere + + +09:11:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACR +Value: h +Device: PJSIP/10 +State: NOT_INUSE +Cause: 16 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:11:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a8f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479856.9859 +Linkedid: 1724479846.9855 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +09:11:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479856.9856 +Linkedid: 1724479846.9855 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9880 +Source: 79082957865 +Destination: 10 +DestinationContext: ext-local +CallerID: "79082957865" <79082957865> +DestinationChannel: PJSIP/10-00001157 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479856.9859 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: 8f9ca375-a983-4f53-9411-634c7f31b0e8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: NOT_INUSE + + +09:11:03 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9882 + + +09:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;1 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:11:15 + +Event: BridgeLeav +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479856.9856 +Linkedid: 1724479846.9855 +Variable: BRIDGEPVTCALLID +Value: +DestChannel: Local/13@from-queue-00000a8e;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082957865 +DestConnectedLineName: 79082957865 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479856.9856 +DestLinkedid: 1724479846.9855 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 7 +TalkTime: 12 +Reason: caller + + +09:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479846.9 +Linkedid: 1724479846.9855 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +09:11:15 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Source: 79082957865 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082957865" <79082957865> +DestinationChannel: Local/13@from-queue-00000a8e;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024 + + +09:11:15 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001156 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479846.9855 +Linkedid: 1724479846.9855 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9883 +Source: 79082957865 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082957865" <79082957865> +DestinationChannel: Local/10@from-queue-00000a8f;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 6 + + +09:11:15 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 28fed2b7-3f48-436c-ae66-a2a888e0b2a6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Local/13@f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/13@from-queue +State: NOT_INUSE +Variable: ANSWEREDTIME +Value: 12 + + +09:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_CONTEXT +Value: ext-local + + +09:11:15 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_PRIORITY +Value: + + +09:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +09:11:15 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 28fed2b7-3f48-436c-ae66-a2a888e0b2a6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/13-00001158 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082957865 +ConnectedLineName: 79082957865 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479856.9861 +Linkedid: 1724479846.9855 +UserEvent: refreshcallhistory +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=08 +Family: refreshcallhistory +ActionID: 9884 +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Variable: RTPAUDIOQOSMES + + +09:11:15 + +Event: Cdr +Privilege: cdr,all +Channel: Local/13@from-queue-00000a8e;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 414 +LastCall: 1724479875 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_CONTEXT +Value: +Source: 79082957865 +Destination: 13 +DestinationContext: ext-local +CallerID: "79082957865" <79082957865> +DestinationChannel: PJSIP/13-00001158 +LastApplication: + + +09:11:15 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082957865 +CallerIDName: 79082957865 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479856.9857 +Linkedid: 1724479846.9855 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9886 +Device: Local/13@from-queue +State: NOT_INUSE + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_EXTEN +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=16 + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=16 +Variable: MACRO_DEPTH +Value: 2 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: REALCALLERIDNUM +Value: 16 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=16) + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-ca +Exten: s +Priority: 17 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: AMPUSERCIDNAME +Value: Каб. 4 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Каб. 4 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: DB_RESULT +Value: 16 +Extension: s +Application: Set +AppData: AMPUSERCID=16 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: DB_RESULT +Value: PJSIP/13 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=13) + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)=SecretyDolgoletiya <79217365096>) + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:11:23 + +Event: +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=Каб. 4 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_EXTEN +Value: 13 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +09:11:23 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: __PICKUPMARK +Value: 13 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=16 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: exten +Application: Set +AppData: CALLTYPE=internal +Variable: MACRO_DEPTH +Value: 1 + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 8 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 2?Set(CALLER_PRI=10) + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 13 +Uniqueid: 1724479883.9862 +Linkedid: 1724479 +Variable: DB_RESULT +Value: dontcare +Extension: exten +Application: GotoIf +AppData: 1?caller + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 15 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALEERECMODE=yes + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 20 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(RECMODE=yes) + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 23 +Uniqueid: 1724479883.9 +Linkedid: 1724479883.9862 +Variable: LOCAL(ARGC) +Value: 3 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,internal,13) + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: MACRO_DEPTH +Value: 1 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=internal-13-16-20240824-091123-1724479883.9862 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=PJSIP/16-00001159 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub- +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: ARG3 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 24 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: P +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: DEXTEN +Value: 13 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) +Variable: MACRO_DEPTH +Value: 2 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-o +Exten: dstring +Priority: 7 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 +Variable: THISDIAL +Value: PJSIP/13 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstrin +Priority: 12 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: MACRO_DEPTH +Value: 2 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479883.986 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=16 + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: s +Application: NoOp +AppData: Blind Transfer +Variable: MACRO_DEPTH +Value: 2 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-display +Exten: state-not_set +Priority: 1 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: state-not_set +Application: Set +AppData: PRESENCESTATE_DISPLAY= +Variable: MACRO_DEPTH +Value: 2 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 47 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CONNECTEDLINE(name,i)=Регистратура_2 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_PRIORITY +Value: 50 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrg) + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: RINGTIME_MS +Value: + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000115a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479883.9863 +Linkedid: 1724479883.9862 +Variable: __CALLFILENAME +Value: internal-13-16-20240824-091123-1724479883.9862 + + +09:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000115a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479883.9863 +Linkedid: 1 +Variable: __TTL +Value: 64 + + +09:11:23 + +Event: Var +Privilege: dialplan,all +Channel: PJSIP/13-0000115a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724479883.9863 +Linkedid: 1724479883.9862 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +09:11:23 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 16 +Priority: 55 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/13-0000115a +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 16 +DestConnectedLineName: Каб. 4 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479883.9863 +DestLinkedid: 1724479883.9862 +DialString: 13/sip +Device: PJSIP/16 +State: INUSE +Hint: PJSIP/16&Custom +Status: 1 +StatusText: InUse + + +09:11:25 + +Event: DialState +Privilege: call,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 414 +LastCall: 1724479875 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 2111 +DestChannel: PJSIP/13-0000115a +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 16 +DestConnectedLineName: Каб. 4 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479883.9863 +DestLinkedid: 1724479883.9862 +DialStatus: RINGING + + +09:11:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: DIALSTATUS +Value: ANSWER + + +09:11:35 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/13-0000115a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724479883.9863 +Linkedid: 1724479883.9862 +Variable: DIALEDPEERNUMBER +Value: 13/sip +DestChannel: PJSIP/13-0000115a +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 16 +DestConnectedLineName: Каб. 4 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: +DestPriority: 1 +DestUniqueid: 1724479883.9863 +DestLinkedid: 1724479883.9862 +DialStatus: ANSWER +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 414 +LastCall: 1724479875 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: d6482052-c629-4e48-a306-2b3cc04bfccd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +09:11:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: BRIDGEPVTCALLID +Value: b19d6431-229b-4d03-aed5-c4a50cc25ae6 + + +09:11:45 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/13-0000115a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724479883.9863 +Linkedid: 1724479883.9862 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3e796edc +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724479905.361595 +SentRTP: 1282543976 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xcf41a8c8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 17634 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 10 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000115a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724479883.9863 +Linkedid: 1724479883.9862 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001500;avgrxjitter=000.001221;stdevrxjitter=000.000157;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +09:11:53 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/13-0000115a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000157; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +09:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: DIALEDTIME +Value: 30 +BridgeUniqueid: d6482052-c629-4e48-a306-2b3cc04bfccd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000115a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724479883.9863 +Linkedid: 1724479883.9862 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +09:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 414 +LastCall: 1724479875 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: MACRO_DEPTH +Value: 0 +BridgeUniqueid: d6482052-c629-4e48-a306-2b3cc04bfccd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: К +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9887 + + +09:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001159 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Variable: RTPAUDIOQOSRTT +Value: minrtt=003.045700; maxrtt=004.087463; avgrtt=003.566581; stdevrtt=000.520881; + + +09:11:53 + +Event: ExtensionStatus +Privilege: call,all +AccountCode: +Source: 16 +Destination: 13 +DestinationContext: ext-local +CallerID: "Каб. 4" <16> +Channel: PJSIP/16 +DestinationChannel: PJSIP/13-0000115a +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 30 +BillableSeconds: 18 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479883.9862 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +Context: ext-local +Exten: 16 +Priority: 1 +Uniqueid: 1724479883.9862 +Linkedid: 1724479883.9862 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/16 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 9888 +Hint: PJSIP/16&Custom +Status: 0 +StatusText: Idle + + +09:12:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:12:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:12:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-091236 +Variable: __YEAR +Value: 2024 + + +09:12:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:12:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:12:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:12:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:12:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:12:36 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:12:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 2 +Application: AGI +AppData: agi + + +09:12:38 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +CommandId: 1161965072 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:12:38 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +CommandId: 525107923 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724479956.9864 +Linkedid: 1724479 +CommandId: 2058384968 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:12:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:12:38 + +Event: Newexten +Privilege: di +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:12:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.98 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=79211705192 + + +09:12:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724479956.9864 +Linkedid: 1 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=79211705192) +Variable: MACRO_DEPTH +Value: 1 + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) + + +09:12:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: s +Application: Set +AppData: CALLERID(name)=79211705192 +Variable: MACRO_DEPTH +Value: 1 + + +09:12:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +09:12:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: ARG1 +Value: reset + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: +Linkedid: 1724479956.9864 +Extension: s +Application: Set +AppData: GOSUB_RETVAL=TRUE +Variable: MACRO_DEPTH +Value: 1 + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __NODEST=194 + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: P +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: VQ_AINFO +Value: +Extension: 194 +Application: Set +AppData: VQ_AINFO= + + +09:12:38 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +09:12:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +09:12:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +09:12:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:12:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +09:12:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +09:12:47 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724479967 +Variable: QUEUEJOINTIME +Value: 1724479967 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: RINGING +Channel: Local/12@from-queue-00000a90;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479967.9865 +Linkedid: 1724479956.9864 +Queue: 194 +Position: 1 +Count: 1 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479967.9865 +Linkedid: 1724479956.9864 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479967.9865 +Linkedid: 1724479956.9864 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: __FROM_DID +Value: 79217365096 + + +09:12:47 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a90;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479967.9865 +LocalOneLinkedid: 1724479956.9864 +LocalTwoChannel: Local/12@from-queue-00000a90;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79211705192 +LocalTwoCallerIDName: 79211705192 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479967.9866 +LocalTwoLinkedid: 17 + + +09:12:47 + +Event: N +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 3 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +DestChannel: Local/12@from-queue-00000a90;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724479967.9865 +DestLinkedid: 1724479956.9864 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 12 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +09:12:47 + +Event: VarSet +Privilege: +Channel: Local/13@from-queue-00000a91;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479967.9867 +Linkedid: 1724479956.9864 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000115b +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: ARG5 +Value: 0 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479967.9867 +Linkedid: 1724479956.9864 +Extension: s +Application: Macro +AppData: user-callerid, +Variable: __MONTH +Value: 08 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921170519 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: CHANCONTEXT +Value: from-queue-00000a90;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a90;2 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000a90;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000a90;2 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000115b +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: AMPUSER +Value: 79211705192 +Extension: s +Application: Set +AppData: AMPUSER=79211705192 + + +09:12:47 + +Event: VarSet +Privilege: +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: __TIMESTR +Value: 20240824-091236 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: __DIRECTION +Value: +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:12:47 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 1 +Priority: 13 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +LocalOneChannel: Local/13@from-queue-00000a91;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479967.9867 +LocalOneLinkedid: 1724479956.9864 +LocalTwoChannel: Local/13@from-queue-00000a91;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79211705192 +LocalTwoCallerIDName: 79211705192 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479967.9868 +LocalTwoLinkedid: 1724479956.9864 +LocalOptimization: No +Extension: s +Application: GotoIf +AppData: 1?report + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479967.9869 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +DestChannel: Local/13@from-queue-00000a91;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724479967.9867 +DestLinkedid: 1724479956.9864 +DialString: Local/13@from-queue/n +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479967.9869 +Linkedid: 1724479956.9864 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __FROMQUEUEEXTEN +Value: 7921170519 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479967.9869 +Linkedid: 1724479956.9864 +Variable: __MON_FMT +Value: wav + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: __NODEST +Value: 194 +Extension: s +Application: Set +AppData: __TTL=63 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: Set +AppData: CALLERID(number)=79211705192 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: __MONTH +Value: 08 + + +09:12:47 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a92;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724479967.9869 +LocalOneLinkedid: 1724479956.9864 +LocalTwoChannel: Local/10@from-queue-00000a92;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79211705192 +LocalTwoCallerIDName: 79211705192 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724479967.9870 +LocalTwoLinkedid: 1724479956.9864 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000a92;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: < +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479967.9869 +DestLinkedid: 1724479956.9864 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +09:12:47 + +Event: VarSet +Privilege: dialplan +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a92;2 + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: HOTDESKEXTEN +Value: 10@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: s +Application: GotoIf +AppData: 0?cnum +Variable: MACRO_DEPTH +Value: 2 + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MAC +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724479967.9866 +Linkedid: 172447 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479967.9 +Linkedid: 1724479956.9864 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724479967 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-091247 + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: DB_RESULT +Value: yes + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79211705192) + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79211705192-20240824-091247-1724479967.9866.wav,abi(), + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956. +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: DB_RESULT +Value: EXTENSION + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 792 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a91;2 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79211705192 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: HOTDESKEXTEN +Value: 13@from + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: record +Priority: 25 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG3 +Value: + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: external + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-c +Exten: exten +Priority: 6 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: S +AppData: 0?Set(DEVICES=2) + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724479967 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: THISDIAL +Value: PJSIP/12/sip +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-on +Exten: dstring +Priority: 16 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1( + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 36 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921170519 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-di +Exten: s +Priority: 55 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: RECFROMEXTEN +Value: 79211705192 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79211705192) + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79211705192-20240824-091247-1724479967.9870.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79211705192-20240824-091247-1724479967.9870.wav + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: MACRO_DEPTH +Value: 1 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: ARG1 +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: +Priority: 3 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:12:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_EXTEN +Value: s + + +09:12:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-o +Exten: s +Priority: 1 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000115c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479967.9871 +Linkedid: +Variable: __REC_STATUS +Value: RECORDING +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000115c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479967.9871 +Linkedid: 1724479956.9864 +Variable: __PICKUPMARK +Value: 12 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000115c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479967.9871 +Linkedid: 1724479956.9864 +Variable: __NODEST +Value: 194 + + +09:12:48 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-0000115c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724479967.9871 +Linkedid: 1724479956.9864 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000115c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724479967.9871 +Linkedid: 1724479956.9864 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +09:12:48 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/12@from-queue-00000a90;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479967.9865 +DestLinkedid: 1724479956.9864 +DialString: 12/sip +Device: Local/12@from-queue +State: INUSE +DialStatus: RINGING + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 792 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-091247 +Variable: MACRO_DEPTH +Value: 1 + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARGC) +Value: 3 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: __REC_POLICY_MODE +Value: YES + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79211705192) +Variable: MACRO_DEPTH +Value: 1 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79211705192-20240824-091247-1724479967.9868.wav +Variable: MACRO_DEPTH +Value: 1 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792117051 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921170519 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstr +Priority: 5 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: MACRO_DEPT +Value: PJSIP/13/sip + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLT + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724479967.9870 +Linkedid: 17 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 12 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info, +Variable: MACRO_DEPTH +Value: 2 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 50 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724479967.9868 +Linkedid: 172 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: DIALEDTIME +Value: + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000115d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479967.9872 +Linkedid: 1724479956.9864 +Variable: __RECORD_ID +Value: RECORDING + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479967.9872 +Linkedid: 1724479956.9864 +Variable: __PICKUPMARK +Value: 10 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000115d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-inter +Exten: s +Priority: 1 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Extension: s +Application: Return +AppData: +Variable: __RECORD_ID +Value: Local/13@from-queue-00000a91;2 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000115e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Variable: __EXTT +Value: 13 + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000115e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000115b + + +09:12:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000115e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 7921 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +09:12:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000115e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: + + +09:12:48 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479967.9867 +Linkedid: 1724479956.9864 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/13-0000115e +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724479967.9873 +DestLinkedid: 1724479956.9864 +DialString: 13/sip + + +09:12:48 + +Event: DialState +Privilege: call,all +Device: Local/13@from-queue +State: INUSE +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +DestChannel: Local/13@from-queue-00000a91;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479967.9867 +DestLinkedid: 1724479956.9864 +DialStatus: RINGING + + +09:12:50 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 53 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3105 +DestChannel: Local/12@from-queue-00000a90;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479967.9865 +DestLinkedid: 1724479956.9864 +DialStatus: RINGING +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing + + +09:12:50 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:12:51 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 3750 +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: Local/10@from-queue-00000a92;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479967.9869 +DestLinkedid: 1724479956.986 +DialStatus: RINGING + + +09:12:51 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 55 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME +Value: 4 +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +09:12:51 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/13 +State: RINGING +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +DestChannel: Local/13@from-queue-00000a91;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479967.9867 +DestLinkedid: 1724479956.9864 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 414 +LastCall: 1724479875 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:12:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000115e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/13 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm +Hint: PJSIP/13&Custom +Status: 1 +StatusText: InUse + + +09:12:53 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 414 +LastCall: 1724479875 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/13-0000115e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +09:12:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000115e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:12:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000115e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000115b)= + + +09:12:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000115e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +09:12:53 + +Event: B +Privilege: dialplan,all +Channel: PJSIP/13-0000115e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-0000115e +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724479967.9873 +DestLinkedid: 1724479956.9864 +DialStatus: ANSWER +BridgeUniqueid: 5b35cb8c-aeb9-4ef9-8643-f86a48004f1e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: INUSE + + +09:12:53 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: 5b35cb8c-aeb9-4ef9-8643-f86a48004f1e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: BRIDGEPVTCALLID +Value: c9a9226b-a884-4620-a67f-e4f98023dbff +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000a91;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479967.9867 +DestLinkedid: 1724479956.9864 +DialStatus: ANSWER + + +09:12:53 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479967.9865 +Linkedid: 1724479956.9864 +DestChannel: Local/12@from-queue-00000a90;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479967.9865 +DestLinkedid: 1724479956.9864 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:12:53 + +Event: DialEnd +Privilege: call,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: Local/13@from-queue-00000a91;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724479967.9867 +DestLinkedid: 1724479956.9864 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 6 +RingTime: 6 +BridgeUniqueid: b80bccaa-f068-45f2-a292-6a6c9a35f57f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:12:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_PRIORITY +Value: 3 + + +09:12:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h + + +09:12:53 + +Event: Cdr +Privilege: cdr,all +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Source: 79211705192 +Destination: 12 +DestinationContext: ext-local +CallerID: "79211705192" <79211705192> +DestinationChannel: PJSIP/12-0000115c +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2 + + +09:12:53 + +Event: Hangup +Privilege: call,all +Device: PJSIP/12 +State: NOT_INUSE +Channel: Local/12@from-queue-00000a90;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479967.9866 +Linkedid: 1724479956.9864 +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere +Variable: MACRO_PRIORITY +Value: + + +09:12:53 + +Event: VarSet +Privilege: dialplan,all +Device: Local/12@from-queue +State: NOT_INUSE +BridgeUniqueid: b80bccaa-f068-45f2-a292-6a6c9a35f57f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 10 +ConnectedLineName: Ре +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9890 +DestChannel: PJSIP/10-0000115d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79211705192 +DestConnectedLineName: 79211705192 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724479967.9872 +DestLinkedid: 1724479956.9864 +DialStatus: CANCEL + + +09:12:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a92;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: ARG1 +Value: + + +09:12:53 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 0 +Family: refreshcallhistory +Channel: Local/10@from-queue-00000a92;2 +ActionID: 9892 +AccountCode: +Source: 79211705192 +Destination: 10 +DestinationContext: ext-local +CallerID: "79211705192" <79211705192> +DestinationChannel: PJSIP/10-0000115d +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724479967.9870 +UserField: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_DEPTH + + +09:12:53 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479967.9870 +Linkedid: 1724479956.9864 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9894 + + +09:13:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724479967.9867 +Linkedid: 1724479956.9864 +Variable: RTPAUDIOQOSBRIDGED +Value: ssrc=1725805978;themssrc=1048955;lp=0;rxjitter=0.001750;rxcount=2495;txjitter=0.000125;txcount=2455;rlp=0;rtt=0.000000;rxmes=85.367289;txmes=85.367289 + + +09:13:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000252; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; + + +09:13:27 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: MACRO_IN_HANGUP +Value: 1 +BridgeUniqueid: b80bccaa-f068-45f2-a292-6a6c9a35f57f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:13:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-h +Exten: s +Priority: 55 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: b80bccaa-f068-45f2-a292-6a6c9a35f57f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 + + +09:13:27 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 6 +TalkTime: 34 +Reason: caller +Device: Local/13@from-queue +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Source: 79211705192 + + +09:13:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479956.9864 +Linkedid: 1724479956.9864 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000252; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE + + +09:13:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 5b35cb8c-aeb9-4ef9-8643-f86a48004f1e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:13:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: ARG3 +Value: + + +09:13:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a91;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:13:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000115e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Source: 79211705192 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79211705192" <79211705192> +DestinationChannel: Local/13@from-queue-00000a91;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 39 +BillableSeconds: 39 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479956.9864 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9895 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 5b35cb8c-aeb9-4ef9-8643-f86a48004f1e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:13:27 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-0000115b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211705192 +ConnectedLineName: 79211705192 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724479967.9873 +Linkedid: 1724479956.9864 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000181; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 415 +LastCall: 1724480007 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 79211705192 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79211705192" <79211705192> +DestinationChannel: Local/10@from-queue-00000a92;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 202 + + +09:13:27 + +Event: Hangup +Privilege: call,all +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: Local/13@from-queue-00000a91;2 +ActionID: 9896 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211705192 +CallerIDName: 79211705192 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724479967.9868 +Linkedid: 1724479956.9864 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Source: 79211705192 +Destination: 13 +DestinationContext: ext-local +CallerID: "79211705192" <79211705192> +DestinationChannel: PJSIP/13-0000115e +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 39 +BillableSeconds: 33 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724479967.9868 +UserField: + + +09:13:27 + +Event: UserEvent +Privilege: user,all +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/13@FROM-QUEUE +ActionID: 9898 + + +09:17:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:17:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:17:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-091720 +Variable: __YEAR +Value: 2024 + + +09:17:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:17:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:17:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:17:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:17:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:17:21 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:17:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:17:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 21 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(name-pres)=allowed_not_screened + + +09:17:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: 2 +Application: AGI +AppData: agi + + +09:17:22 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +CommandId: 547239152 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:17:22 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +CommandId: 511165188 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:17:23 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +CommandId: 1629092221 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:17:23 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +CommandId: 2072809925 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: DB_RESULT +Value: +Extension: 194 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +09:17:23 + +Event: VarSet +Privilege: dialpl +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +09:17:23 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: CHANEXTEN +Value: Megafon_3-0000115f +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-0000115f + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-0000115f +Variable: MACRO_DEPTH +Value: 1 + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +09:17:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 172448 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:17:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 17244802 +Linkedid: 1724480240.9874 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +09:17:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 53 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: CDR(cnum)=79116073126 +Variable: MACRO_DEPTH +Value: 1 + + +09:17:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79116073126 + + +09:17:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000115f)=TRUE + + +09:17:23 + +Event: Newexten +Privilege: dialplan, +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: MacroExit +AppData: + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: VQ_CIDPP +Value: +Extension: 194 +Application: Set +AppData: VQ_CIDPP= + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: QJOINMSG +Value: custom/Privet_23_08 + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 20 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: VQ_RETRY +Value: +Extension: 194 +Application: Set +AppData: VQ_RETRY= + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 31 +Uniqueid: 172448 +Linkedid: 1724480240.9874 +Variable: VQ_POSITION +Value: +Extension: 194 +Application: Set +AppData: VQ_POSITION= + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against dontcare +Variable: LOCAL(ARGC) +Value: 3 + + +09:17:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: s +Application: Return +AppData: +Variable: ARG3 +Value: + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ex +Exten: 194 +Priority: 35 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: GotoIf +AppData: 0?QVQANNOUNCE + + +09:17:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +09:17:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +09:17:31 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724480251 +Variable: QUEUEJOINTIME +Value: 1724480251 + + +09:17:31 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: RINGING +Channel: Local/12@from-queue-00000a93;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480251.9875 +Linkedid: 1724480240.9874 +Queue: 194 +Position: 1 +Count: 1 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +09:17:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480251.9875 +Linkedid: 1724480240.9874 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:17:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480251.9875 +Linkedid: 1724480240.9874 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:17:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +09:17:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: __FROM_DID +Value: 79217365096 + + +09:17:31 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a93;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724480251.9875 +LocalOneLinkedid: 1724480240.9874 +LocalTwoChannel: Local/12@from-queue-00000a93;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116073126 +LocalTwoCallerIDName: 79116073126 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724480251.9876 +LocalTwoLinkedid: 17 + + +09:17:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +DestChannel: Local/12@from-queue-00000a93;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724480251.9875 +DestLinkedid: 1724480240.9874 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: QAGENT +Value: 12 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724480251.9877 +Linkedid: 1724480240.9874 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000115f +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724480251.9877 +Linkedid: 1724480240.9874 +Variable: __MON_FMT +Value: wav + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n +Extension: 12 +Application: GotoIf +AppData: 1?194,1 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: __FROMQUEUEEXTEN +Value: 79116073126 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724480251 +Linkedid: 1724480240.9874 +Variable: DB_RESULT +Value: EXTENSION + + +09:17:32 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +LocalOneChannel: Local/13@from-queue-00000a94;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 + + +09:17:32 + +Event: Newchannel +Privilege: call,all +Channel: Local/10@from-queue-00000a95;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: __RINGTIMER +Value: 60 +DestChannel: Local/13@from-queue-00000a94;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724480251.9877 +DestLinkedid: 1724480240.9874 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: 12 +Application: Macro +AppData: exten-v +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724480251.9879 +Linkedid: 1724480240.9874 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screen + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724480251.9879 +Linkedid: 1724480240.9874 +Variable: __YEAR +Value: 2024 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: 10 +Priority: 1 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000115f +Extension: s +Application: Macro +AppData: user-callerid, + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724480240.9874 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:17:32 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724480251.9876 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +LocalOneChannel: Local/10@from-queue-00000a95;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724480251.9879 +LocalOneLinkedid: 1724480240.9874 +LocalTwoChannel: Local/10@from-queue-00000a95;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116073126 +LocalTwoCallerIDName: 79116073126 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724480251.9880 +LocalTwoLinkedid: 1724480240.9874 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000a95;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480251.9879 +DestLinkedid: 172 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724480251.9879 +DestLinkedid: 1724480240.9874 +DialString: Local/10@from-queue/n +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000a93;2 +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: AMPUSER +Value: 79116073126 +Extension: s +Application: Set +AppData: AMPUSER=79116073126 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 3 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: HOTDESKEXTEN +Value: 12@from +Extension: 10 +Application: GotoIf +AppData: 0?hangup + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 12 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79116073126 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: 194 +Priority: 1 +Uniqueid: 1724480251.9875 +Linkedid: 1724480240.9874 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724480251 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +09:17:32 + +Event: +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?R + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116073126) + + +09:17:32 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-12-79116073126-20240824-091731-1724480251.9876.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79116073126-20240824-091731-1724480251.9876.wav,abi(), + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: ARG3 +Value: 0 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79116073126-20240824-091731-1724480251.9876.wav + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000a95;2 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79116073126 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724480251.988 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724480251.9876 +Linkedid: 1724480 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DB_RESULT +Value: 12 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: dstring +Application: GotoIf +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: GOSUB_RETVAL +Value: +Extension: dstring +Application: Return +AppData: + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79116073126 +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: PROGRESSTIME +Value: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_EXTEN +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001160 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480251.9881 +Linkedid: 1724480240.9874 +Variable: __CALLFILENAME +Value: external-12-79116073126-20240824-091731-1724480251.9876 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001160 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724480251.9881 +Linkedid: 17244 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001160 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724480251.9881 +Linkedid: 1724480240.9874 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724480251. +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +DestChannel: PJSIP/12-00001160 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724480251.9881 +DestLinkedid: 1724480240.9874 +DialString: 12/sip +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record- +Exten: s +Priority: 6 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: exte +Application: Set +AppData: CALLTYPE=external + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub- +Exten: exten +Priority: 6 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79116073126-20240824-091731-1724480251.9880.wav,abi(), + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: +Device: Local/12@from-queue +State: INUSE +DestChannel: Local/12@from-queue-00000a93;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480251.9875 +DestLinkedid: 1724480240.9874 +DialStatus: RINGING + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: ARG3 +Value: 10 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: DB_RESULT +Value: 10 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: dstring +Priority: 9 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:17:32 + +Event: Newexten +Privilege: dialplan,al +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +09:17:32 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 172 +Linkedid: 1724480240.9874 +Variable: PROGRESSTIME +Value: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001161 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480251.9882 +Linkedid: 1724480240.9874 +Variable: __MON_FMT +Value: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001161 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724480251.9882 +Linkedid: 1724480240.9874 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724480251.9882 +Linkedid: 1724480240.9874 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791160731 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: DB_RESULT +Value: EXTENSION +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +09:17:32 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79116073126 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 9 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: s +Application: GotoIf +AppData: 0?cnum +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 54 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_EXTEN +Value: 13 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 791160731 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: __TIMESTR +Value: 20240824-091731 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-091731 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724480251.9878 +Linkedid: 172448024 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: LOCAL(ARG3) +Value: 13 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79116073126) + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79116073126-20240824-091731-1724480251.9878.wav + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:17:32 + +Event: VarSet +Privilege: dia +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: MACRO_DEPTH +Value: 2 + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +09:17:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: THISDIAL +Value: PJSI +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:17:32 + +Event: VarSet +Privilege: dial +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +09:17:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:17:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724480251.98 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:17:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 7911607312 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:17:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +09:17:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +09:17:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRI +Value: macro-dial-one + + +09:17:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724480240.9874 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +09:17:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:17:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +09:17:33 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/13-00001162 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: PROGRESSTIME_MS +Value: +DestChannel: Local/10@from-queue-00000a95;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480251.9879 +DestLinkedid: 1724480240.9874 +DialString: 10/sip +Device: Local/10@from-queue +State: INUSE +DialStatus: RINGING + + +09:17:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001162 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480251.9883 +Linkedid: 1724480240.9874 +Variable: __MON_FMT +Value: wav + + +09:17:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001162 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480251.9883 +Linkedid: 1724480240.9874 +Variable: __FROMQ +Value: true + + +09:17:33 + +Event: DialBegin +Privilege: call,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-00001162 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: + + +09:17:33 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +DestChannel: Local/13@from-queue-00000a94;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480251.9877 +DestLinkedid: 1724480240.9874 +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE + + +09:17:35 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/12-00001160 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724480251.9881 +Linkedid: 1724480240.9874 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING + + +09:17:35 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: RINGTIME_MS +Value: 3266 +DestChannel: Local/12@from-queue-00000a93;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480251.9875 +DestLinkedid: 1724480240.9874 +DialStatus: RINGING + + +09:17:35 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3651 +Device: PJSIP/13 +State: RINGING +DestChannel: Local/13@from-queue-00000a94;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480251.9877 +DestLinkedid: 1724480240.987 +DialStatus: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 415 +LastCall: 1724480007 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:17:36 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: RINGING +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: RINGTIME_MS +Value: 4256 +DestChannel: Local/10@from-queue-00000a95;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480251.9879 +DestLinkedid: 1724480240.9874 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:17:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001161 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724480251.9882 +Linkedid: 1724480 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/10 +State: INUSE + + +09:17:38 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 286 +LastCall: 1724479462 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-00001161 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724480251.9882 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +09:17:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001161 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724480251.9882 +Linkedid: 1724480240.9874 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:17:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001161 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724480251.9882 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000115f)= + + +09:17:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001161 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724480251.9882 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +09:17:39 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/10-00001161 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724480251.9882 +Linkedid: 1724480240.9874 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-00001161 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724480251.9882 +DestLinkedid: 1724480240.9874 +DialStatus: ANSWER +BridgeUniqueid: 7c2be94e-eeb7-4d33-965a-28aaceae0c4e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:17:39 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 7911 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000a94;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480251.9877 +DestLinkedid: 1724480240.9874 +DialStatus: CANCEL + + +09:17:39 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/13@from-queue-00000a94;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724480251.9877 +Linkedid: 1724480240.9874 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000a94;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480251.9877 +DestLinkedid: 1724480240.9874 +DialStatus: CANCEL +BridgeUniqueid: 7c2be94e-eeb7-4d33-965a-28aaceae0c4e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: + + +09:17:39 + +Event: DialEnd +Privilege: call,all +Device: Queue +State: NOT_INUSE +Exten: 194 +Context: ext-queues +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Queue: 194 +Position: 1 +Count: 0 +Variable: BRIDGEPVTCALLID +Value: f559216b-eb21-4f41-bcce-1f9219f8e3bf +DestChannel: Local/10@from-queue-00000a95;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480251.9879 +DestLinkedid: 1724480240.9874 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 7 +RingTime: 7 +BridgeUniqueid: cd109b4e-1f6a-40b3-9a76-619be9f6c327 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:17:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +DestChannel: PJSIP/12-00001160 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116073126 +DestConnectedLineName: 79116073126 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724480251.9881 +DestLinkedid: 1724480240.9874 +DialStatus: CANCEL +Variable: ARG3 +Value: 0 +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +09:17:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: ARG3 +Value: + + +09:17:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:17:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: ARG2 +Value: +Device: Local/10@from-queue +State: INUSE + + +09:17:39 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 12 +ConnectedLineName: Регист +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_PRIORITY +Value: +Device: Local/13@from-queue +State: NOT_INUSE +Extension: s +Application: GotoIf +AppData: 1?theend + + +09:17:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere + + +09:17:39 + +Event: BridgeEnter +Privilege: call,all +BridgeUniqueid: cd109b4e-1f6a-40b3-9a76-619be9f6c327 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:17:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a94;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724480251.9878 +Linkedid: 1724480240.9874 +Variable: MACRO_CONTEXT +Value: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9902 +Extension: s +Application: Hangup +AppData: + + +09:17:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a93;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Cause: 26 +Cause-txt: Answered elsewhere +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 9903 +Source: 79116073126 +Destination: 13 +DestinationContext: ext-local +CallerID: "79116073126" <79116073126> +DestinationChannel: PJSIP/13-00001162 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724480251.9878 +UserField: +Device: Local/13@from-queue +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Variable: MACRO_EXTEN + + +09:17:39 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724480251.9876 +Linkedid: 1724480240.9874 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79116073126 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116073126" <79116073126> +DestinationChannel: PJSIP/12-00001160 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724480251.9876 +UserField: +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9904 + + +09:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:18:21 + +Event: SoftHangupRequest +Privilege: call,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: +Linkedid: 1724480240.9874 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: cd109b4e-1f6a-40b3-9a76-619be9f6c327 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +09:18:21 + +Event: Cdr +Privilege: cdr,all +BridgeUniqueid: 7c2be94e-eeb7-4d33-965a-28aaceae0c4e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 7 +TalkTime: 43 +Reason: caller +Variable: BRIDGEPEER +Value: +Source: 79116073126 +Destination: 10 +DestinationContext: ext-local +CallerID: "79116073126" <79116073126> + + +09:18:21 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: ARG2 +Value: 10 +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +BridgeUniqueid: 7c2be94e-eeb7-4d33-965a-28aaceae0c4e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: ARG4 +Value: + + +09:18:21 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000a95;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_PRIORITY +Value: 1 +Device: Local/10@from-queue +State: NOT_INUSE +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: 7c2be94e-eeb7-4d33-965a-28aaceae0c4e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001161 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724480251.9880 +Linkedid: 1724480240.9874 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: + + +09:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000115f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116073126 +ConnectedLineName: 79116073126 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724480251.9882 +Linkedid: 1724480240.9874 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9905 + + +09:18:21 + +Event: UserEvent +Privilege: user +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116073126 +CallerIDName: 79116073126 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724480240.9874 +Linkedid: 1724480240.9874 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 287 +LastCall: 1724480301 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9907 + + +09:18:21 + +Event: Cdr +Privilege: cdr,all +AccountCode: +Source: 79116073126 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116073126" <79116073126> +Channel: PJSIP/Megafon_3-0000115f +DestinationChannel: Local/10@from-queue-00000a95;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 49 +BillableSeconds: 49 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724480240.9874 +UserField: + + +09:22:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T09 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE44-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +09:22:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T09 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +09:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-092442 +Variable: __YEAR +Value: 2024 + + +09:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:24:42 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:24:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: 2 +Application: AGI +AppData: agi + + +09:24:44 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +CommandId: 1958812293 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:24:44 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +CommandId: 1654692856 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724480682.9884 +Linkedid: 172448068 +CommandId: 557204349 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 17 +Linkedid: 1724480682.9884 +Variable: AMPUSER +Value: 79210254455 +Extension: s +Application: Set +AppData: AMPUSER=79210254455 + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 4 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dont +Variable: VQ_AINFO +Value: + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:24:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +09:24:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: 194 +Application: QueueLog +AppData: 194,1724480682.9884,NONE,DID,79217365096 + + +09:24:53 + +Event: Newexten +Privilege: dia +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:24:53 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: QUEUEJOINTIME +Value: 1724480693 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING +Queue: + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480693.9885 +Linkedid: 1724480682.9884 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480693.9885 +Linkedid: 1724480682.9884 +Variable: __RINGINGSENT +Value: TRUE + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480693.9885 +Linkedid: 1724480682.9884 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: __FROMQUEUEEXTEN +Value: 79210254455 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: __YEAR +Value: 2024 + + +09:24:53 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a96;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724480693.9885 +LocalOneLinkedid: 1724480682.9884 +LocalTwoChannel: Local/12@from-queue-00000a96;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210254455 +LocalTwoCallerIDName: 79210254455 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724480693.9886 +LocalTwoLinkedid: 1724480682.9884 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000a96;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480693.9885 +DestLinkedid: 1724480682.9884 +Queue: 194 +Interface: Local/12@from-qu + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 4 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +DestChannel: Local/12@from-queue-00000a96;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724480693.9885 +DestLinkedid: 1724480682.9884 +DialString: Local/12@from-queue/n +Extension: 12 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724480693.9887 +Linkedid: 1724480682.9884 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724480693.9887 +Linkedid: 1724480682.9884 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724480693.9887 +Linkedid: 1724480682.9884 +Variable: __YEAR +Value: 2024 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 7921025 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: 13 +Priority: 1 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: __SIGNORE +Value: TRUE + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724480693.9888 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724480693.9886 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: s +Priority: 3 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: CHANCONTEXT +Value: from + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: 13 +Priority: 1 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000a96;2 + + +09:24:53 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a97;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724480693.9887 +LocalOneLinkedid: 1724480682.9884 +LocalTwoChannel: Local/13@from-queue-00000a97;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210254455 +LocalTwoCallerIDName: 79210254455 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724480693.9888 +LocalTwoLinkedid: 1724480682.9884 +LocalOptimization: No +Extension: s +Application: Set +AppData: CALLERID(number)=79210254455 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: 13 +Application: Set +AppData: QAGENT=13 +Variable: QAGENT +Value: 13 +DestChannel: Local/13@from-queue-00000a97;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724480693.9887 +DestLinkedid: 1724480682.9884 +DialString: Local/13@from-queue/n + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724480693.9889 +Linkedid: 1724480682.9884 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001163 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: __RINGINGSENT +Value: TRUE + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 3 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: __FROMQ +Value: true +Extension: 13 +Application: Set +AppData: __FROMQ=true + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG4 +Value: 0 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724480693.9888 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: CHANEXTENCONTEXT +Value: 13@from-queue-00000a97;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000a97;2 + + +09:24:53 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000a97;2 +Variable: MACRO_DEPTH +Value: 2 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: CALLERID(number)=79210254455 +Variable: MACRO_DEPTH +Value: 2 + + +09:24:53 + +Event: VarSet +Privilege: di +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: CDR(cnam)=79210254455 +Variable: __CWIGNORE +Value: TRUE + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000a98;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724480693.9889 +LocalOneLinkedid: 1724480682.9884 +LocalTwoChannel: Local/10@from-queue-00000a98;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210254455 +LocalTwoCallerIDName: 79210254455 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724480693.9890 +LocalTwoLinkedid: 1724480682.9884 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000a98;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724480693.9889 +DestLinkedid: 1724480682.9884 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 10 +Application: Set +AppData: QAGENT=10 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 +Variable: DB_RESULT +Value: 0 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG1 +Value: novm + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +09:24:53 + +Event: VarSet +Privilege: dial +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: CALLERID(number)=79210254455 +Variable: MACRO_DEPTH +Value: 2 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724480693.9890 +Linkedid: 172448 +Variable: __TTL +Value: 63 +Extension: s +Application: Set +AppData: __TTL=63 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: CDR(cnam)=79210254455 +Variable: MACRO_DEPTH +Value: 2 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 792102544 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: 3 + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792102544 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 +Variable: MACRO_DEPTH +Value: 1 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:24:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +09:24:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79210254455 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79210254455 and 12 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +09:24:54 + +Event: New +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79210254455) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:24:54 + +Event: Newexten +Privilege: dialplan +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 2 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +09:24:54 + +Event: Newexten +Privilege: dialplan,al +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: 0?initialized + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: su +Exten: s +Priority: 8 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79210254455 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 +Variable: MACRO_DEPTH +Value: 1 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 7921025 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79210254455 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-ch +Exten: exten +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79210254455 and 10 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-c +Exten: recordcheck +Priority: 10 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLF + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +09:24:54 + +Event: VarSet +Privilege: dialplan, +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exte +Priority: 2 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: CALLTYPE +Value: external + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79210254455-20240824-092453-1724480693.9888 +Variable: MACRO_DEPTH +Value: 1 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: ARG3 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_DEPTH +Value: 2 + + +09:24:54 + +Event: Newexten +Privilege: dialp +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: EXTHASCW +Value: 2 +Extension: s +Application: Set +AppData: EXTHASCW= + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: dstring +Priority: 2 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: DB_RESULT +Value: 10 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724480693.9890 +Linkedid: 17244806 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724480693. +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=13) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 792102544 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACR +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 +Variable: THISDIAL +Value: PJSIP/13 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: MACRO_DEPTH +Value: 2 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: ITER +Value: 2 +Extension: recordcheck +Application: Return +AppData: + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: ARG3 +Value: 12 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +09:24:54 + +Event: VarSet +Privilege: dia +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= +Variable: DIALSTATUS_CW +Value: + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 7 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip +Variable: THISDIAL +Value: PJSIP/12/sip + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +09:24:54 + +Event: VarSet +Privilege: dialp +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: RINGTIME +Value: + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: D_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480693.9891 +Linkedid: 1724480682.9884 +Variable: __CWIGNORE +Value: TRUE + + +09:24:54 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/12-00001164 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480693.9891 +Linkedid: 1724480682.9884 +Variable: __DAY +Value: 24 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001164 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480693.9891 +Linkedid: 1724480682.9884 +Variable: __QCONTEXT +Value: 0 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001164 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210254455 +ConnectedLineName: 7921025445 +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480693.9891 +Linkedid: 1724480682.9884 +Variable: __DIRECTION +Value: + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001164 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724480693.9891 +Linkedid: 1724480682.9884 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001165 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480693.9892 +Linkedid: 1724480682.9884 +Variable: __REC_STATUS +Value: RECORDING +Extension: s +Application: Return +AppData: + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001165 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480693. +Linkedid: 1724480682.9884 +Variable: __DAY +Value: 24 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001165 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480693.9892 +Linkedid: 1724480682.9884 +Variable: __NODEST +Value: 194 + + +09:24:54 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-00001165 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724480693.9892 +Linkedid: 1724480682.9884 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001165 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724480693.9892 +Linkedid: 1724480682.9884 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 172448069 +Linkedid: 1724480682.9884 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout- +Exten: s +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALEDTIME +Value: + + +09:24:54 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: PROGRESSTIME_MS +Value: +DestChannel: Local/13@from-queue-00000a97;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: from-q +DestExten: s +DestPriority: 13 +DestUniqueid: 1724480693.9892 +DestLinkedid: 1724480682.9884 +DialString: 13/sip + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001166 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: __REC_POLI +Value: external-10-79210254455-20240824-092453-1724480693.9890 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001166 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001166 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:24:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001166 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/10-00001166 + + +09:24:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001166 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +09:24:54 + +Event: NewConnectedLine +Privilege: call,all +Device: Local/12@from-queue +State: INUSE +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724480693.9889 +Linkedid: 1724480682.9884 +DestChannel: PJSIP/10-00001166 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724480693.9893 +DestLinkedid: 1724480682.9884 +DialString: 10/sip +DialStatus: RINGING + + +09:24:54 + +Event: DialState +Privilege: call,all +Device: Local/10@from-queue +State: INUSE +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +DestChannel: Local/10@from-queue-00000a98;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480693.9889 +DestLinkedid: 1724480682.9884 +DialStatus: RINGING + + +09:24:56 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3250 +DestChannel: PJSIP/12-00001164 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724480693.9891 +DestLinkedid: 1724480682.9884 +DialStatus: RINGING +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:24:56 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +DestChannel: Local/12@from-queue-00000a96;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480693.9885 +DestLinkedid: 1724480682.9884 +DialStatus: RINGING + + +09:24:57 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3660 +DestChannel: PJSIP/10-00001166 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724480693.9893 +DestLinkedid: 1724480682.9884 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 287 +LastCall: 1724480301 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:24:57 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 4241 +Device: PJSIP/13 +State: RINGING + + +09:24:57 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +DestChannel: Local/13@from-queue-00000a97;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480693.9887 +DestLinkedid: 1724480682.9884 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 415 +LastCall: 1724480007 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:24:59 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-d +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Device: PJSIP/10 +State: INUSE +Channel: PJSIP/10-00001166 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 287 +LastCall: 1724480301 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:24:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001166 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: CFIGNORE +Value: +Extension: s +Application: Set +AppData: CFIGNORE= + + +09:24:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001166 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:24:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001166 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001163)= + + +09:24:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001166 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +09:24:59 + +Event: B +Privilege: dialplan,all +Channel: PJSIP/10-00001166 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-00001166 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724480693.9893 +DestLinkedid: 1724480682.9884 +DialStatus: ANSWER +BridgeUniqueid: 19bdd99f-5116-4156-8062-87c8a5e7edee +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE + + +09:24:59 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: 19bdd99f-5116-4156-8062-87c8a5e7edee +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: BRIDGEPVTCALLID +Value: d89c921b-ed91-4e2a-bd76-2becd5978271 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000a98;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480693.9889 +DestLinkedid: 1724480682.9884 +DialStatus: ANSWER + + +09:24:59 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724480693.9885 +Linkedid: 1724480682.9884 +DestChannel: Local/12@from-queue-00000a96;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480693.9885 +DestLinkedid: 1724480682.9884 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:24:59 + +Event: DialEnd +Privilege: call,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: Local/10@from-queue-00000a98;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724480693.9889 +DestLinkedid: 1724480682.9884 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +RingTime: 5 +BridgeUniqueid: cc155e28-1464-4469-a210-fcebcdca93c1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:24:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 55 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_PRIORITY +Value: 3 +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +09:24:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +09:24:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: ARG1 +Value: novm +DestChannel: PJSIP/13-00001165 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: 79210254455 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724480693.9892 +DestLinkedid: 1724480682.9884 +DialStatus: CANCEL + + +09:24:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: ARG1 +Value: + + +09:24:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +09:24:59 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/12-00001164 +ChannelState: 5 +ChannelStateDesc: +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +09:24:59 + +Event: BridgeEnter +Privilege: call,all +Device: PJSIP/13 +State: NOT_INUSE +Channel: Local/10@from-queue-00000a98;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Cause: 26 +Cause-txt: Answered elsewhere +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 415 +LastCall: 1724480007 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 9912 +BridgeUniqueid: cc155e28-1464-4469-a210-fcebcdca93c1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:24:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a96;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupca +Exten: s +Priority: 4 +Uniqueid: 1724480693.9886 +Linkedid: 1724480682.9884 +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: cc155e28-1464-4469-a210-fcebcdca93c1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: MACRO_EXTEN +Value: +Source: 79210254455 +Destination: 12 +DestinationContext: ext-local +CallerID: "79210254455" <79210254455> +DestinationChannel: PJSIP/12-00001164 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724480693.9886 +UserField: + + +09:24:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724480693.9888 +Linkedid: 1724480682.9884 +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: Hangup +AppData: +Device: Local/13@from-queue +State: NOT_INUSE + + +09:24:59 + +Event: Cdr +Privilege: cdr,all +Channel: Local/13@from-queue-00000a97;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9914 +Source: 79210254455 +Destination: 13 +DestinationContext: ext-local +CallerID: "79210254455" <79210254455> +DestinationChannel: PJSIP/13-00001165 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724480693.9888 +UserField: + + +09:26:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: RTPAUDIOQOSBRIDGED +Value: ssrc=466691630;themssrc=830293411;lp=0;rxjitter=0.000000;rxcount=3348;txjitter=0.000875;txcount=3374;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +09:26:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000138; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +09:26:06 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Variable: MACRO_PRIORITY +Value: + + +09:26:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a98;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724480693.9890 +Linkedid: 1724480682.9884 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +09:26:07 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Channel: PJSIP/10-00001166 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724480693.9893 +Linkedid: 1724480682.9884 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000138; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 287 +LastCall: 1724480301 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:26:07 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Cause: 16 +DestChannel: Local/10@from-queue-00000a98;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210254455 +DestConnectedLineName: + + +09:26:07 + +Event: BridgeLeave +Privilege: call,all +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-00001163 +ActionID: 9915 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210254455 +ConnectedLineName: 79210254455 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724480693.9889 +Linkedid: 1724480682.9884 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79210254455 +Destination: 10 +DestinationContext: ext-local +CallerID: "79210254455" <79210254455> +DestinationChannel: PJSIP/10-00001166 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 73 +BillableSeconds: 67 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724480693.9890 +UserField: +Variable: BRIDGEPEER +BridgeUniqueid: cc155e28-1464-4469-a210-fcebcdca93c1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: NOT_INUSE + + +09:26:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +09:26:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001163 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: MACRO_PRIORITY +Value: +BridgeUniqueid: cc155e28-1464-4469-a210-fcebcdca93c1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9917 +Extension: s +Application: Hangup +AppData: + + +09:26:07 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210254455 +CallerIDName: 79210254455 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724480682.9884 +Linkedid: 1724480682.9884 +Variable: RTPAUDIOQOSMES +Value: 1 +Source: 79210254455 +Destination: 194 +DestinationContext: ext-q +CallerID: "79210254455" <79210254455> +DestinationChannel: Local/12@from-queue-00000a96;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724480682.9884 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9918 + + +09:26:07 + +Event: Cdr +Privilege: cdr,all +AccountCode: +Source: 79210254455 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79210254455" <79210254455> +Channel: PJSIP/Megafon_3-00001163 +DestinationChannel: Local/10@from-queue-00000a98;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 73 +BillableSeconds: 73 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724480682.9884 +UserField: + + +09:31:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 0?initialize + + +09:31:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __YEAR +Value: 2024 + + +09:31:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:31:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: FROMEXTEN +Value: 79082251399 + + +09:31:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:31:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 + + +09:31:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +09:31:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 12 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:31:45 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Device: PJSIP/Megafon_3 +State: INUSE + + +09:31:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 14 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:31:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 20 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: __CALLINGNUMPRES_SV=allowed_not_screened + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: 2 +Application: AGI +AppData: agi + + +09:31:46 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +CommandId: 1577503001 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:31:46 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +CommandId: 245026424 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:31:46 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +CommandId: 909021376 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724481104.9894 +Linkedid: 1724481 +CommandId: 1971662543 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: s +Application: Se +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: +Linkedid: 1724481104.9894 +Variable: AMPUSER +Value: 79082251399 +Extension: s +Application: Set +AppData: AMPUSER=79082251399 + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 4 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=do +Variable: VQ_AINFO +Value: + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:31:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +09:31:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 44 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: 194 +Application: Set +AppData: VQ_AANNOUNCE= +Variable: VQ_AANNOUNCE +Value: + + +09:31:55 + +Event: Newexten +Privilege: dialp +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 50 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: VQ_MAXWAIT +Value: +Extension: 194 +Application: Set +AppData: VQ_MAXWAIT= + + +09:31:55 + +Event: NewCallerid +Privilege: call,all +Channel: Local/ +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481115.9895 +Linkedid: 1724481104.9894 +Variable: QUEUEJOINTIME +Value: 1724481115 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481115.9895 +Linkedid: 1724481104.9894 +Variable: __FROMQUEUEEXTEN +Value: 79082251399 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: < +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481115.9895 +Linkedid: 1724481104.9894 +Variable: __TIMESTR +Value: 20240824-093144 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-qu +Exten: 12 +Priority: 1 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: __CWIGNORE +Value: TRUE + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 17244 +Linkedid: 1724481104.9894 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:31:55 + +Event: NewCallerid +Privilege: call,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: __DIRECTION +Value: + + +09:31:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +LocalOneChannel: Local/12@from-queue-00000a99;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481115.9895 +LocalOneLinkedid: 1724481104.9894 +LocalTwoChannel: Local/12@from-queue-00000a99;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082251399 +LocalTwoCallerIDName: 79082251399 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481115.9896 +LocalTwoLinkedid: 1724481104.9894 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000a99;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724481115.9895 +DestLinkedid: 1724481104.9894 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481115.9897 +Linkedid: 1724481104.9894 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001167 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: < +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481115.9897 +Linkedid: 1724481104.9894 +Variable: __MON_FMT +Value: wav + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: __SIGNORE +Value: TRUE + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:31:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000a9a;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481115.9897 +LocalOneLinkedid: 1724481104.9894 +LocalTwoChannel: Local/13@from-queue-00000a9a;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082251399 +LocalTwoCallerIDName: 79082251399 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481115.9898 +LocalTwoLinkedid: 1724481104.9894 +LocalOptimization: No +Extension: 12 +Application: Set +AppData: QAGENT=12 +Variable: QAGENT +Value: 12 +DestChannel: Local/13@from-queue-00000a9a;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481115.9897 +DestLinkedid: 1724481104.9894 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 + + +09:31:55 + +Event: VarSet +Privilege: dialpl +Channel: Local/10@from-queue-00000a9b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481115.9899 +Linkedid: 1724481104.9894 +DestChannel: Local/13@from-queue-00000a9a;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724481115.9897 +DestLinkedid: 1724481104.9894 +DialString: Local/13@from-queue/n +Variable: __QC_CONFIRM +Value: 0 +Extension: 12 +Application: GotoIf +AppData: 1?194,1 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481115.9899 +Linkedid: 1724481104.9894 +Variable: __TTL +Value: 64 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;1 +ChannelState: 0 +ChannelStateDesc: D +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481115.9899 +Linkedid: 1724481104.9894 +Variable: __MON_FMT +Value: wav + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001167 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: __FROM_DID +Value: 79217365096 + + +09:31:55 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 172448 +Linkedid: 1724481104.9894 +Variable: __DIRECTION +Value: +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:31:55 + +Event: DialBegin +Privilege: call,all +LocalOneChannel: Local/10@from-queue-00000a9b;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481115.9899 +LocalOneLinkedid: 1724481104.9894 +LocalTwoChannel: Local/10@from-queue-00000a9b;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082251399 +LocalTwoCallerIDName: 79082251399 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481115.9900 +LocalTwoLinkedid: 1724481104.9894 +Context: ext-queues +Exten: 194 +LocalOptimization: No +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +DestChannel: Local/10@from-queue-00000a9b;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724481115.9899 +DestLinkedid: 1724481104.9894 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 + + +09:31:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: 10 +Application: Macro +AppData: user-callerid, + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724481115.9896 +Linkedid: 17244811 +Variable: TOUCH_MONITOR +Value: 1724481115.9896 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724481115.9896 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000a99;2 +Variable: MACRO_DEPTH +Value: 2 + + +09:31:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79082251399 + + +09:31:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 790 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_EXTEN +Value: 10 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a9b;2 + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: CHANEXTEN +Value: 10 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +09:31:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724481115.9900 +Linkedid: 17244811 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000a9b;2 +Variable: MACRO_DEPTH +Value: 2 + + +09:31:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:31:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: s +Application: Set +AppData: CALLERID(name)=79082251399 +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 4 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: 13 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: __RINGTIMER +Value: 60 +Extension: 13 +Application: Macro +AppData: exten-vm,novm, + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724481115.9898 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724481115.98 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000a9a;2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 792 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: HOTDESCKCHAN +Value: 13@from-queue-00000a9a;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000a9a;2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: mac +Exten: s +Priority: 49 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79082251399 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: __EXTTOCALL +Value: 10 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: LOCAL(ARG2) +Value: 10 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: NOW +Value: 1724481115 +Extension: s +Application: Set +AppData: NOW=1724481115 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings init + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: LOCAL(ARG1) +Value: yes + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-recor +Exten: recordcheck +Priority: 9 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +09:31:56 + +Event: VarSet +Privilege: +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79082251399) +Variable: RECFROMEXTEN +Value: 79082251399 + + +09:31:56 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79082251399-20240824-093155-1724481115.9900.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79082251399-20240824-093155-1724481115.9900.wav + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +09:31:56 + +Event: Newexten +Privilege: dialpl +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: recordcheck +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +09:31:56 + +Event: Newext +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: DB_RESULT +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: PJSIP/10/sip + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: 2 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 17244811 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: s +Application: Set +AppData: CDR(cnum)=79082251399 +Variable: MACRO_DEPTH +Value: + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: s +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724481115.9898 +Linkedid: 17 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: s +Application: Set +AppData: RingGroupMethod=none +Variable: MACRO_DEPTH +Value: 1 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 17244811 +Linkedid: 1724481104.9894 +Variable: DB_RESULT +Value: +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: GotoIf +AppData: 1?godial + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: PROGRESSTIME_MS +Value: +Extension: s +Application: Set +AppData: RT= + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724481115.9896 +Linkedid: 1724481 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:31:56 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/10-00001168 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: __FROMEXTEN +Value: 79082251399 +Extension: s +Application: Set +AppData: __FROMEXTEN=79082251399 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724481115.9901 +Linkedid: 1724481104.9894 +Variable: __REC_STATUS +Value: RECORDING +Extension: s +Application: NoOp +AppData: Recordings initialized + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724481115.9901 +Linkedid: 1724481104.9894 +Variable: __YEAR +Value: 2024 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001168 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481115.9901 +Linkedid: 1724481104.9894 +Variable: __RINGTIMER +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +09:31:56 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724481115.9901 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-chec +Exten: exten +Priority: 6 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001168 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724481115.9901 +Linkedid: 172448110 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/10-00001168 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724481115.9901 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: While +AppData: 0 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001168 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724481115.9901 +Linkedid: 172448110 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Return +AppData: + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: ARG3 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: dstring +Application: Set +AppData: DEVICES=12 +Variable: DEVICES +Value: 12 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_1 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724481115. +Linkedid: 1724481104.9894 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +09:31:56 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/12-00001169 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: PROGRESSTIME_MS +Value: + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001169 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481115 +Linkedid: 1724481104.9894 +Variable: __MON_FMT +Value: wav + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001169 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481115.9902 +Linkedid: 1724481104.9894 +Variable: __FROMQ +Value: true + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001169 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регист +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481115.9902 +Linkedid: 1724481104.9894 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001169 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724481115.9902 +Linkedid: 1724481104.9894 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Set +AppData: RT= + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:31:56 + +Event: VarSet +Privilege: di +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: __FROMEXTEN +Value: 79082251399 +Extension: s +Application: Set +AppData: __FROMEXTEN=79082251399 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724481115.9898 +Linkedid: 17 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: MACRO_DEPTH +Value: 1 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79082251399 and 13 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: recordcheck +Application: NoOp +AppData: recordcheck,1(yes,external,13) +Variable: MACRO_DEPTH +Value: 1 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79082251399-20240824-093155-1724481115.9898 +Variable: MACRO_DEPTH +Value: 1 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: ARG3 +Value: 13 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:31:56 + +Event: VarSet +Privilege: d +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: s +Application: Set +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstr +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DB_RESULT +Value: 13 + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724481115.9898 +Linkedid: 17244 +Extension: dstring +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +09:31:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-di +Exten: ctset +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79082251399 +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724481115.9898 +Linkedid: 172 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: +Linkedid: 1724481104.9894 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: MACRO_DEPTH +Value: 2 + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: PROGRESSTIME +Value: + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000116a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Variable: __REC_POLICY_MODE +Value: YES + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000116a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000116a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:31:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000116a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +09:31:56 + +Event: DialBegin +Privilege: +Channel: PJSIP/13-0000116a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +09:31:56 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-queue-00000a9a;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 79 +CallerIDName: 79082251399 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +DestChannel: PJSIP/13-0000116a +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724481115.9903 +DestLinkedid: 1724481104.9894 +DialString: 13/sip +Device: Local/10@from-queue +State: INUSE + + +09:31:56 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/12@from-queue-00000a99;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481115.9895 +DestLinkedid: 1724481104.9894 +DialStatus: RINGING + + +09:31:59 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 55 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3393 +Device: PJSIP/13 +State: RINGING +DestChannel: PJSIP/13-0000116a +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724481115.9903 +DestLinkedid: 1724481104.9894 +DialStatus: RINGING +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +09:31:59 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 415 +LastCall: 1724480007 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +DestChannel: Local/13@from-queue-00000a9a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481115.9897 +DestLinkedid: 1724481104.9894 +DialStatus: RINGING + + +09:31:59 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3851 +DestChannel: PJSIP/10-00001168 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724481115.9901 +DestLinkedid: 1724481104.9894 +DialStatus: RINGING +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing + + +09:31:59 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 288 +LastCall: 1724480766 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:32:00 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 4500 +Device: PJSIP/12 +State: RINGING +DestChannel: Local/12@from-queue-00000a99;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481115.9895 +DestLinkedid: 1724481104.9894 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing + + +09:32:00 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:32:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: DIALEDPEERNAME +Value: PJSIP/13-0000116a + + +09:32:05 + +Event: Newexten +Privilege: dialplan,all +Device: PJSIP/13 +State: INUSE +Channel: PJSIP/13-0000116a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: 13 +Priority: 1 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Extension: s +Application: Macro +AppData: auto-blkvm +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 415 +LastCall: 1724480007 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:32:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000116a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: CFIGNORE +Value: +Extension: s +Application: Set +AppData: MASTER_CHANNEL(CFIGNORE)= + + +09:32:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000116a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Extension: s +Application: Macro +AppData: blkvm-clr, +Variable: MACRO_CONTEXT +Value: macro-auto-blkvm + + +09:32:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000116a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: m +Exten: s +Priority: 2 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +09:32:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000116a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 7908225 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +09:32:05 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000a9a;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481115.9897 +Linkedid: 1724481104.9894 +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-0000116a +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724481115.9903 +DestLinkedid: 1724481104.9894 +DialStatus: ANSWER +BridgeUniqueid: 53c9789b-3a81-4930-958e-0852cfae99af +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +09:32:05 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +DestChannel: Local/12@from-queue-00000a99;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481115.9899 +DestLinkedid: 1724481104.9894 +DialStatus: CANCEL +BridgeUniqueid: 53c9789b-3a81-4930-958e-0852cfae99af +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +09:32:05 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000a9b;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: from-queue +Exten: s +Priority: 55 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: BRIDGEPVTCALLID +Value: 3b8f7b15-ff7f-4fe9-92e1-5c962f1e8d45 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000a9b;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481115.9899 +DestLinkedid: 1724481104.9894 +DialStatus: CANCEL + + +09:32:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9 +Linkedid: 1724481104.9894 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Local/13@from-queue +State: INUSE +Queue: 194 +Position: 1 +Count: 0 +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Variable: QUEUEPOSITION +Value: 1 +DestChannel: PJSIP/10-00001168 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082251399 +DestConnectedLineName: 79082251399 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724481115.9901 +DestLinkedid: 1724481104.9894 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 10 +RingTime: 9 +BridgeUniqueid: 9b1df945-180e-47bb-8e01-0f1de0b2bac6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL + + +09:32:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 17244 +Linkedid: 1724481104.9894 +Variable: ARG1 +Value: + + +09:32:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:32:05 + +Event: DialEnd +Privilege: call,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724481115.9901 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 9b1df945-180e-47bb-8e01-0f1de0b2bac6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 26 +Cause-txt: Answered elsewhere + + +09:32:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_PRIORITY +Value: 3 + + +09:32:05 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Variable: MACRO_PRIORITY +Value: +Device: PJSIP/10 +State: NOT_INUSE +Cause: 26 +Cause-txt: Answered elsewhere + + +09:32:05 + +Event: QueueMemberStatus +Privilege: +Device: Local/10@from-queue +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/12@from-queue-00000a99;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +09:32:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 4 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Source: 79082251399 +Destination: 10 +DestinationContext: ext-local +CallerID: "79082251399" <79082251399> +DestinationChannel: PJSIP/10-00001168 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 9 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481115.9900 +UserField: + + +09:32:05 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481115.9900 +Linkedid: 1724481104.9894 +Variable: BRIDGEPEER +Value: 1 +BridgeUniqueid: 9b1df945-180e-47bb-8e01-0f1de0b2bac6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9920 + + +09:32:05 + +Event: Hangup +Privilege: call,all +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: Local/12@from-queue-00000a99;2 +ActionID: 9923 +AccountCode: +Source: 79082251399 +Destination: 12 +DestinationContext: ext-local +CallerID: "79082251399" <79082251399> +DestinationChannel: PJSIP/12-00001169 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 9 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481115.9896 +UserField: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724481115.9896 +Linkedid: 1724481104.9894 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY + + +09:32:05 + +Event: RTCPSent +Privilege: reporting,all +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-00001167 +ActionID: 9924 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4003b2a8 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724481125.462402 +SentRTP: 158047 +SentPackets: 969 +SentOctets: 154887 +Report0SourceSSRC: 0x000b01bf +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 6065 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 3964919218 +Report0DLSR: 3.0310 + + +09:32:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:32:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:32:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-093213 +Variable: __YEAR +Value: 2024 + + +09:32:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:32:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:32:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:32:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:32:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:32:13 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:32:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 14 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:32:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:32:14 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:32:14 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 2 +Application: AGI +AppData: agi + + +09:32:14 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +CommandId: 15847381 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:32:14 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724481133.9904 +Linkedid: 172448113 +CommandId: 587088432 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:32:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:32:14 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:32:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 17 +Linkedid: 1724481133.9904 +Variable: AMPUSER +Value: 79539042899 +Extension: s +Application: Set +AppData: AMPUSER=79539042899 + + +09:32:14 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +09:32:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +09:32:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:32:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:32:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:32:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +09:32:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +09:32:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 4 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:32:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +09:32:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dont +Variable: VQ_AINFO +Value: + + +09:32:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +09:32:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +09:32:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +09:32:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +09:32:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:32:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:32:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +09:32:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +09:32:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 45 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 194 +Application: Set +AppData: QMOH= +Variable: VQ_AANNOUNCE +Value: + + +09:32:23 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 51 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 194 +Application: Set +AppData: QUEUENUM=194 +Variable: VQ_MAXWAIT +Value: + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481143.9905 +Linkedid: 1724481133.9904 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Variable: QUEUEJOINTIME +Value: 1724481143 +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481143.9905 +Linkedid: 1724481133.9904 +Variable: __TTL +Value: 64 + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481143.9905 +Linkedid: 1724481133.9904 +Variable: __YEAR +Value: 2024 + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: __RVOL_MODE +Value: dontcare + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481143.9 +Linkedid: 1724481133.9904 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:32:23 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:32:23 + +Event: NewCallerid +Privilege: call,all +LocalOneChannel: Local/12@from-queue-00000a9c;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481143.9905 +LocalOneLinkedid: 1724481133.9904 +LocalTwoChannel: Local/12@from-queue-00000a9c;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539042899 +LocalTwoCallerIDName: 79539042899 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481143.9906 +LocalTwoLinkedid: 1724481133.9904 +Context: from-queue +Exten: 10 +LocalOptimization: No +Channel: Local/10@ +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Priority: 1 +Uniqueid: 1724481143.9907 +Linkedid: 1724481133.9904 +DestChannel: Local/12@from-queue-00000a9c;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724481143.9905 +DestLinkedid: 1724481133.9904 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481143.9907 +Linkedid: 1724481133.9904 +Variable: __FROMQUEUEEXTEN +Value: 79539042899 + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481143.9907 +Linkedid: 1724481133.9904 +Variable: __TIMESTR +Value: 20240824-093213 + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: __CWIGNORE +Value: TRUE + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 17244811 +Linkedid: 1724481133.9904 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:32:23 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: __DIRECTION +Value: + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +LocalOneChannel: Local/10@from-queue-00000a9d;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481143.9907 +LocalOneLinkedid: 1724481133.9904 +LocalTwoChannel: Local/10@from-queue-00000a9d;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539042899 +LocalTwoCallerIDName: 79539042899 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481143.9908 +LocalTwoLinkedid: 1724481133.9904 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000a9d;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724481143.9907 +DestLinkedid: 1724481133.9904 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 12 +Application: Set +AppData: QAGENT=12 +Variable: QAGEN + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +Variable: DB_RESULT +Value: 0 + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG1 +Value: novm + + +09:32:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro- +Exten: s +Priority: 3 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: __FROMQ +Value: true + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_EXTEN +Value: 10 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a9d;2 + + +09:32:24 + +Event: V +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: CHANEXTEN +Value: 10 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-call +Exten: s +Priority: 8 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000a9d;2 +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 7953904289 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:32:24 + +Event: VarSet +Privilege: dia +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 172448 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: CALLERID(name)=79539042899 +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: CALLERID(number)=79539042899 +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-use +Exten: s +Priority: 32 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7953904 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: CDR(cnam)=79539042899 +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: ext-local + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: __PICKUPMARK +Value: 10 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:32:24 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-093223 +Variable: __TIMESTR +Value: 20240824-093223 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724481143. +Linkedid: 1724481133.9904 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: LOCAL(ARG3) +Value: 10 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-c +Exten: recordcheck +Priority: 18 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79539042899) +Variable: MACRO_DEPTH +Value: 1 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-rec +Exten: recordcheck +Priority: 21 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_D +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79539042899-20240824-093223-1724481143.9908.wav + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.99 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: DB_RESULT +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: PJSIP/10/sip + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial +Exten: dstring +Priority: 19 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALER + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 17244 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: __EXTTOCALL +Value: 12 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481143.9 +Linkedid: 1724481133.9904 +Variable: DIALEDTIME +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724481143 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724481143.9906 +Linkedid: 172448113 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79539042899) +Variable: MACRO_DEPTH +Value: 1 + + +09:32:24 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-12-79539042899-20240824-093223-1724481143.9906.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79539042899-20240824-093223-1724481143.9906.wav,abi(), + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: __REC_STATUS +Value: REC +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 +Variable: MACRO_EXTEN +Value: s + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 1 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: DB_RESULT +Value: PJSIP/12 +Extension: dstring +Application: Set +AppData: ITER=1 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: THISDIAL +Value: PJSIP/12/sip +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481143.9909 +Linkedid: 1724481133.9904 +Variable: __DAY +Value: 24 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 1 +Uniqueid: 1724481143.9909 +Linkedid: 1724481133.9904 +Variable: __QC_CONFIRM +Value: 0 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: ITER +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481143.9909 +Linkedid: 1724481133.9904 +Variable: __FROM_DID +Value: 79217365096 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724481143.9909 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Return +AppData: + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_CONTEXT +Value: s +Extension: s +Application: MacroExit +AppData: + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 52 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: ANSWEREDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +09:32:24 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: PROGRESSTIME_MS +Value: +DestChannel: PJSIP/10-0000116c +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724481143.9909 +DestLinkedid: 1724481133.9904 +DialString: 10/sip + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Device: Local/10@from-queue +State: INUSE +Channel: PJSIP/12-0000116d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481143.9910 +Linkedid: 1724481133.9904 +Variable: __CALLFILENAME +Value: external-12-79539042899-20240 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000116d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481143.9910 +Linkedid: 1724481133.9904 +Variable: __TTL +Value: 63 + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000116d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481143.9910 +Linkedid: 1724481133.9904 +Variable: __FROMQUEUEEXTEN +Value: 79539042899 + + +09:32:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000116d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1 +Linkedid: 1724481133.9904 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +09:32:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000116d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 795390 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724481143.9910 +Linkedid: 1724481133.9904 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +09:32:24 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/12@from-queue-00000a9c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481143.9905 +DestLinkedid: 1724481133.9904 +DialString: 12/sip +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE + + +09:32:26 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 2892 +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +DestChannel: Local/12@from-queue-00000a9c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481143.9905 +DestLinkedid: 1724481133.9904 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:32:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116c +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724481143.9909 +Linkedid: 1724481133.9904 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +09:32:27 + +Event: DialState +Privilege: call,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: RINGTIME_MS +Value: 3187 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 288 +LastCall: 1724480766 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: Local/10@from-queue-00000a9d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481143.9907 +DestLinkedid: 1724481133.9904 +DialStatus: RINGING + + +09:32:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481143.9909 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +09:32:42 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/10 +State: INUSE +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 288 +LastCall: 1724480766 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-0000116c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 795 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724481143.9909 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: MACRO_DEPTH +Value: 1 + + +09:32:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: FORWARD_CONTEXT +Value: from-internal +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal + + +09:32:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000116b)= +Variable: SHARED(BLKVM) +Value: + + +09:32:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724481143.9909 +Linkedid: 1724481133.9904 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +09:32:43 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +DestChannel: PJSIP/10-0000116c +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724481143.9909 +DestLinkedid: 1724481133.9904 +DialStatus: ANSWER +BridgeUniqueid: a87864c0-cb33-412e-a126-48679d7d174c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE + + +09:32:43 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: a87864c0-cb33-412e-a126-48679d7d174c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000a9d;2 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/12@from-queue-00000a9c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481143.9907 +DestLinkedid: 1724481133.9904 +DialStatus: ANSWER + + +09:32:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +DestChannel: Local/12@from-queue-00000a9c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481143.9905 +DestLinkedid: 1724481133.9904 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: BRIDGEPVTCALLID +Value: 5369d3b2-18e0-4643-a500-c9e4e0fbc2cb +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 + + +09:32:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +DestChannel: PJSIP/12-0000116d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724481143.9910 +DestLinkedid: 1724481133.9904 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 19 +RingTime: 19 +BridgeUniqueid: 14d101ea-745e-4bc7-aa23-9fe6ba132bd7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL +Device: Local/12@from-queue +State: NOT_INUSE +Variable: ARG2 +Value: 12 + + +09:32:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: ARG3 +Value: +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Source: 79539042899 +Destination: 12 +DestinationContext: ext-local +CallerID: "79539042899" <79539042899> +DestinationChannel: PJSIP/12-0000116d +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 19 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481143.9906 +UserField: + + +09:32:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_EXTEN +Value: h +Cause: 26 +Cause-txt: Answered elsewhere +Extension: h +Application: Macro +AppData: hangupcall, + + +09:32:43 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000a9c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: 14d101ea-745e-4bc7-aa23-9fe6ba132bd7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Device: PJSIP/12 +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 + + +09:32:43 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/10@from-queue-00000a9d;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481143.9906 +Linkedid: 1724481133.9904 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: 14d101ea-745e-4bc7-aa23-9fe6ba132bd7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Cause: 26 +Cause-txt: Answered elsewhere + + +09:32:43 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: BRIDGEPEER +Value: 1 +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9927 + + +09:33:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:33:40 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 53c9789b-3a81-4930-958e-0852cfae99af +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:33:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: ARG3 +Value: 0 + + +09:33:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: MACRO_EXTEN +Value: +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +09:33:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481115.9898 +Linkedid: 1724481104.9894 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:33:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000116a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481115.9903 +Linkedid: 1724481104.9894 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes +BridgeUniqueid: 53c9789b-3a81-4930-958e-0852cfae99af +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:33:41 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481115.9897 +Linkedid: 1724481104.9894 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Variable: MACRO_PRIORITY +Value: + + +09:33:41 + +Event: Cdr +Privilege: cdr,all +Channel: Local/13@from-queue-00000a9a;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082251399 +ConnectedLineName: 79082251399 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481115.9897 +Linkedid: 1724481104.9894 +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Device: Local/13@from-queue +State: NOT_INUSE +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 9b1df945-180e-47bb-8e01-0f1de0b2bac6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Source: 79082251399 +Destination: 13 +DestinationContext: ext-local +CallerID: "79082251399" <79082251399> +DestinationChannel: PJSIP/13-0000116a +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 + + +09:33:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Source: 79082251399 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082251399" <79082251399> +DestinationChannel: Local/12@from-queue-00000a99;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 20 +BillableSeconds: 20 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481104.9894 +UserField: + + +09:33:41 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001167 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082251399 +CallerIDName: 79082251399 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724481104.9894 +Linkedid: 1724481104.9894 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 9931 +Source: 79082251399 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082251399" <79082251399> +DestinationChannel: Local/10@from-queue-00000a9b;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 9 +BillableSeconds: 9 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481104.9894 +UserField: + + +09:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001125;avgrxjitter=000.000136;stdevrxjitter=000.000126;mintxjitter=000.000750;maxtxjitter=011.124250;avgtxjitter=000.655346;stdevtxjitter=002.617226; + + +09:33:42 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481143.9907 +Linkedid: 1724481133.9904 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000126; mintxmes=084.851717; maxtxmes=085.367289; avgtxmes=085.336937; stdevtxmes=000.121305; + + +09:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +DestChannel: Local/10@from-queue-00000a9d;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481143.9907 +DestLinkedid: 1724481133.9904 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 19 +TalkTime: 60 +Reason: caller +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 14d101ea-745e-4bc7-aa23-9fe6ba132bd7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:33:42 + +Event: HangupRequest +Privilege: call,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Рег +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481143.9907 +Linkedid: 1724481133.9904 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 14d101ea-745e-4bc7-aa23-9fe6ba132bd7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: Hangup +AppData: +Device: Local/10@from-queue +State: NOT_INUSE +Variable: MACRO_CONTEXT +Value: + + +09:33:42 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 79539042899 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79539042899" <79539042899> +Channel: Local/10@from-queue-00000a9d;2 +DestinationChannel: Local/12@from-queue-00000a9c;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 29 +BillableSeconds: 29 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481133.9904 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: DIALSTATUS +Value: ANSWER +BridgeUniqueid: a87864c0-cb33-412e-a126-48679d7d174c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 55 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: ARG2 +Value: + + +09:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a9d;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724481133.9904 +Linkedid: 1724481133.9904 +Variable: RTPAUDIOQOSLOSS +Value: minrxjitter=000.000000;maxrxjitter=000.001125;avgrxjitter=000.000136;stdevrxjitter=000.000126;mintxjitter=000.000750;maxtxjitter=011.124250;avgtxjitter=000.655346;stdevtxjitter=002.617226; +Extension: s +Application: GotoIf +AppData: 1?theend + + +09:33:42 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Channel: PJSIP/10-0000116c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724481143.9909 +Linkedid: 1724481133.9904 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.002000;avgrxjitter=000.000930;stdevrxjitter=000.000178;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Device: PJSIP/Megafon_3 +State: NOT_INUSE +BridgeUniqueid: a87864c0-cb33-412e-a126-48679d7d174c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:33:42 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-0000116b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481143.9909 +Linkedid: 1724481133.9904 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 289 +LastCall: 1724481222 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: a87864c0-cb33-412e-a126-48679d7d174c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9933 +Source: 79539042899 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79539042899" <79539042899> +DestinationChannel: Local/10@from-queue-00000a9d;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 78 +BillableSeconds: 78 + + +09:33:42 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/10@FROM-QUEUE +ActionID: 9935 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481143.9908 +Linkedid: 1724481133.9904 +Variable: MACRO_PRIORITY +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Source: 79539042899 +Destination: 10 +DestinationContext: ext-local +CallerID: "79539042899" <79539042899> +DestinationChannel: PJSIP/10-0000116c +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 78 +BillableSeconds: 59 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724481143.9908 +UserField: +Device: Local/10@from-queue +State: NOT_INUSE + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 16 +Priority: 1 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:35:06 + +Event: VarSet +Privilege: +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 16 +Priority: 3 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_EXTEN +Value: 16 +Extension: 16 +Application: Macro +AppData: exten-vm,novm,16,0,0,0 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-us +Exten: s +Priority: 2 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 5 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: CHANEXTEN +Value: 10-0000116e +Extension: s +Application: Set +AppData: CHANEXTEN=10-0000116e + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10 +Variable: MACRO_DEPTH +Value: 2 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?report + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 16 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 2 + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: MACRO_DEPTH +Value: 2 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 22 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(all)="Регистратура_3" <10> + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: DB_RESULT +Value: 79217365096 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=16) + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 25 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?limit + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=64 + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистрату +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=Регистратура_3 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-ext +Exten: s +Priority: 5 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEP +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:35:06 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306. +Extension: exten +Application: Set +AppData: CALLTYPE=internal +Variable: CALLTYPE +Value: internal + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 172 +Linkedid: 1724481306.9911 +Extension: exten +Application: GotoIf +AppData: 0?callee +Variable: MACRO_DEPTH +Value: 1 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 14 +Uniqueid: 1724481306.99 +Linkedid: 1724481306.9911 +Extension: exten +Application: Set +AppData: CALLERRECMODE=yes +Variable: CALLERRECMODE +Value: yes + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 18 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(RECMODE=dontcare) + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Р +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 23 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,internal,16) +Variable: MACRO_DEPTH +Value: 1 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=) +Variable: MACRO_DEPTH +Value: 1 + + +09:35:06 + +Event: VarSet +Privilege: dialplan, +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/internal-16-10-20240824-093506-1724481306.9911.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/internal-16-10-20240824-093506-1724481306.9911.wav + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-recor +Exten: recordcheck +Priority: 25 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: recordcheck +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtr,16 + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=16) + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 24 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: s +Application: GotoIf +AppData: 0?next3 +Variable: MACRO_DEPTH +Value: 2 + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724481306.9911 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724481306. +Linkedid: 1724481306.9911 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 47 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: DB_RESULT +Value: Каб. 4 +Extension: s +Application: Set +AppData: CONNECTEDLINE(name,i)=Каб. 4 + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +09:35:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrg) + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 172 +Extension: s +Application: Dial +AppData: PJSIP/16/sip +Variable: RINGTIME +Value: + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-0000116f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481306.9912 +Linkedid: 1724481306.9911 +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:35:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-0000116f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 3 +Uniqueid: 1724481306.9912 +Linkedid: 1724481306.9911 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +09:35:06 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/16-0000116f +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 16 +DestCallerIDName: Каб. 4 +DestConnectedLineNum: 10 +DestConnectedLineName: Регистратура_3 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724481306.9912 +DestLinkedid: 1724481306.9911 +DialString: 16/sip +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 289 +LastCall: 1724481222 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:35:06 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/10-0000116e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: 16 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/16&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 54 +DestChannel: PJSIP/16-0000116f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 16 +DestCallerIDName: Каб. 4 +DestConnectedLineNum: 10 +DestConnectedLineName: Регистратура_3 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 16 +DestPriority: 1 +DestUniqueid: 1724481306.9912 +DestLinkedid: 1724481306.9911 +DialStatus: RINGING +Device: PJSIP/16 +State: RINGING + + +09:35:20 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-local +Exten: 16 +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: DIALEDPEERNUMBER +Value: 16/sip +DestChannel: PJSIP/16-0000116f +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 16 +DestCallerIDName: Каб. 4 +DestConnectedLineNum: 10 +DestConnectedLineName: Регистратура_3 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: +DestPriority: 1 +DestUniqueid: 1724481306.9912 +DestLinkedid: 1724481306.9911 +DialStatus: ANSWER +Hint: PJSIP/16&Custom +Status: 1 +StatusText: InUse + + +09:35:20 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 57ad836a-c11b-4d7a-8216-e32b4bd51027 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 27204512-aad5-465f-81e8-e687d2004666 + + +09:35:25 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0b5d5b3a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724481325.462978 +SentRTP: 1233804672 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x615368c6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 48731 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:35:30 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0b5d5b3a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724481330.464419 +SentRTP: 1233844832 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x615368c6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 48982 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:35:35 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0b5d5b3a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724481335.462775 +SentRTP: 1233884672 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x615368c6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 49231 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:35:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-0000116f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: r +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:35:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 57ad836a-c11b-4d7a-8216-e32b4bd51027 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:35:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 17 +Linkedid: 1724481306.9911 +Variable: ARG3 +Value: 0 +BridgeUniqueid: 57ad836a-c11b-4d7a-8216-e32b4bd51027 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:35:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_EXTEN +Value: +BridgeUniqueid: 57ad836a-c11b-4d7a-8216-e32b4bd51027 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:35:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:35:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: +Value: minrxmes=020.000000; maxrxmes=085.367289; avgrxmes=041.789096; stdevrxmes=000.000039; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=041.789096; stdevtxmes=030.814435; +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +09:35:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000116e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; + + +09:35:40 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724481306.9911 +Linkedid: 1724481306.9911 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9937 +Source: 10 +Destination: 16 +DestinationContext: ext-local +CallerID: "Регистратура_3" <10> +DestinationChannel: PJSIP/16-0000116f +LastApplication: Dial +LastData: PJSIP/16/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 33 +BillableSeconds: 19 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724481306.9911 +UserField: +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 289 +LastCall: 1724481222 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:37:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:37:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 172 +Linkedid: 1724481440.9913 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:37:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 172448144 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-093720 +Variable: __YEAR +Value: 2024 + + +09:37:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:37:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +09:37:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:37:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: __FROM_DID +Value: 78162769402 +Extension: 78162769402 +Application: Set +AppData: returnhere=1 + + +09:37:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 7 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: 78162769402 +Application: Set +AppData: CDR(did)=78162769402 +Variable: GOSUB_RETVAL +Value: + + +09:37:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:37:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timecond +Exten: 2 +Priority: 2 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:37:20 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +CommandId: 1721092741 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:37:20 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +CommandId: 877686042 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:37:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724481440.991 +Linkedid: 1724481440.9913 +CommandId: 481566213 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +09:37:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724481440.9 +Linkedid: 1724481440.9913 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:37:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724481440.99 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:37:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: AMPUSER +Value: 79212001949 +Extension: s +Application: Set +AppData: AMPUSER=79212001949 + + +09:37:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +09:37:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +09:37:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +09:37:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:37:20 + +Event: VarSet +Privilege: dial +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:37:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +09:37:20 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Device: PJSIP/rt_769402 +State: INUSE + + +09:37:21 + +Event: VarSet +Privilege: dial +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/rt_769402-00001170) + + +09:37:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: MacroExit +AppData: + + +09:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +09:37:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: VQ_AINFO +Value: +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare + + +09:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: 194 +Application: Set +AppData: QRINGOPTS=R +Variable: QRINGOPTS +Value: R + + +09:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queu +Exten: 194 +Priority: 23 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +09:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 29 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +09:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +09:37:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:37:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:37:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +09:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 43 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: 194 +Application: Set +AppData: QAANNOUNCE= + + +09:37:30 + +Event: VarSet +Privilege: dial +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 49 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: 194 +Application: Set +AppData: QMAXWAIT=600 +Variable: VQ_MOH +Value: + + +09:37:30 + +Event: +Privilege: call,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Variable: QUEUEJOINTIME +Value: 1724481450 +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481450.9914 +Linkedid: 1724481440.9913 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481450.9914 +Linkedid: 1724481440.9913 +Variable: __FROM_DID +Value: 78162769402 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: __QC_CONFIRM +Value: 0 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: __CALLEE_ACCOUNCODE +Value: + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:37:30 + +Event: Newchannel +Privilege: call,al +Channel: Local/13@from-queue-00000a9f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481450.9916 +Linkedid: 1724481440.9913 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000a9e;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481450.9914 +LocalOneLinkedid: 1724481440.9913 +LocalTwoChannel: Local/12@from-queue-00000a9e;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79212001949 +LocalTwoCallerIDName: 79212001949 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481450.9915 +LocalTwoLinkedid: 1724481440.9913 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000a9e;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724481450.9914 +DestLinkedid: 1724481440.9913 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481450.9916 +Linkedid: 1724481440.9913 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: < +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481450.9916 +Linkedid: 1724481440.9913 +Variable: __MON_FMT +Value: wav + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: __SIGNORE +Value: TRUE + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:37:30 + +Event: NewCallerid +Privilege: call,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: __DIRECTION +Value: + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +LocalOneChannel: Local/13@from-queue-00000a9f;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481450.9916 +LocalOneLinkedid: 1724481440.9913 +LocalTwoChannel: Local/13@from-queue-00000a9f;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79212001949 +LocalTwoCallerIDName: 79212001949 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481450.9917 +LocalTwoLinkedid: 1724481440.9913 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000a9f;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724481450.9916 +DestLinkedid: 1724481440.9913 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481450.9918 +Linkedid: 1724481440.9913 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __BLKVM_CHANNEL +Value: PJSIP/rt_769402-00001170 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481450.9918 +Linkedid: 1724481440.9913 +Variable: __TIMESTR +Value: 20240824-093720 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: __CWIGNORE +Value: TRUE + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:37:30 + +Event: NewConnec +Privilege: call,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: DB_RESULT +Value: EXTENSION + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724481450.9915 +Linkedid: 172 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: CHANCONTEXT +Value: from-queue-00000a9e;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000a9e;2 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: CHANEXTEN=12 +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: HOTDESKEXTEN +Value: 12@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user- +Exten: s +Priority: 31 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:37:30 + +Event: Newexten +Privilege: dialpl +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: 13 +Application: Set +AppData: QAGENT=13 +LocalOneChannel: Local/10@from-queue-00000aa0;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481450.9918 +LocalOneLinkedid: 1724481440.9913 +LocalTwoChannel: Local/10@from-queue-00000aa0;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79212001949 +LocalTwoCallerIDName: 79212001949 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481450.9919 +LocalTwoLinkedid: 1724481440.9913 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000aa0;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724481450.9918 +DestLinkedid: 1724481440.9913 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Variable: QAGENT +Value: 13 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724481450.9917 +Linkedid: 1724481 +Variable: DB_RESULT +Value: 0 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG1 +Value: novm + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 17 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: CHANCONTEXT +Value: from + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: AMPUSER=79212001949 +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724481450.9917 +Linkedid: 1724 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79212001949 + + +09:37:30 + +Event: Newexten +Privilege: dialp +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACR +Value: ext-local +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000aa0;2 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: HOTDESKEXTEN +Value: 10@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from + + +09:37:30 + +Event: Newexten +Privilege: d +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921200194 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: ext-local + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: __PICKUPMARK +Value: 12 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-093730 +Variable: MACRO_DEPTH +Value: 1 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724481450.991 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) +Variable: LOCAL(A +Value: 12 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: +Linkedid: 1724481440.9913 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79212001949) +Variable: MACRO_DEPTH +Value: 1 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +09:37:30 + +Event: Newexten +Privilege: dial +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79212001949-20240824-093730-1724481450.9915.wav + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +09:37:30 + +Event: Va +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip +Variable: THISDIAL +Value: PJSIP/12/sip + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 30 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEP +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 7816276940 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: RINGTIME +Value: + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:37:30 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: __EXTTOCALL +Value: 10 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: LOCAL(ARG2) +Value: + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724481450.9919 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724481450 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724481450.9919 +Linkedid: +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-c +Exten: s +Priority: 9 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +09:37:30 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: MACRO_DEPTH +Value: 1 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921200 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79212001949) +Variable: MACRO_DEPTH +Value: 1 + + +09:37:30 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79212001949-20240824-093730-1724481450.9919.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79212001949-20240824-093730-1724481450.9919.wav,abi(), + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordche +Priority: 25 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: recordcheck +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_EXTEN +Value: s + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724481450 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +09:37:30 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000a9f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481450.9916 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001171 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481450.9920 +Linkedid: 1724481440.9913 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001171 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481450.9920 +Linkedid: 1724481440.9913 +Variable: __MONTH +Value: 08 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001171 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481450.9920 +Linkedid: 1724481440.9913 +Variable: __QCONTEXT +Value: 0 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 0 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724481 +Linkedid: 1724481440.9913 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: DB_RESULT +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: DSTRING +Value: PJSIP/10/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: PJSIP/10/sip + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: s +Application: GosubIf +AppData: 1?ctset, +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724481450.99 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: +DestChannel: PJSIP/12-00001171 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724481450.9920 +DestLinkedid: 1724481440.9913 +DialString: 12/sip + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_3 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: DB_RESULT +Value: disabled +Extension: +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 55 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: PROGRESSTIME_MS +Value: + + +09:37:30 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: LOCAL(ARGC) +Value: 3 +DestChannel: Local/12@from-queue-00000a9e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481450.9914 +DestLinkedid: 1724481440.9913 +DialStatus: RINGING +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 17244 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724481450 + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-093730 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +09:37:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: ext +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: DB_RESULT +Value: yes + + +09:37:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:37:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79212001949) + + +09:37:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001172 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Variable: __REC_POLICY_MODE +Value: YES + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001172 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Variable: __RINGTIMER +Value: 60 + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001172 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:37:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001172 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 792120 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +09:37:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Return +AppData: +Device: Local/12@from-queue +State: INUSE + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:37:31 + +Event: VarSet +Privilege: di +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEP +Value: 2 + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 17244 +Linkedid: 1724481440.9913 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: THISDIAL +Value: PJSIP/13/sip + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921200 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: 2 + + +09:37:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724481450.9917 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:37:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:37:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724481450.991 +Linkedid: 1724481440.9913 +Variable: MACRO_PRIORITY +Value: 50 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:37:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 1 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 792120019 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212 +CallerIDName: 79212001949 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: RINGTIME +Value: + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001173 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481450.9922 +Linkedid: 1724481 +Variable: PROGRESSTIME_MS +Value: +DestChannel: Local/10@from-queue-00000aa0;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481450.9918 +DestLinkedid: 1724481440.9913 +DialString: 10/sip +DialStatus: RINGING + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001173 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481450.9922 +Linkedid: 1724481440.9913 +Variable: __TIMESTR +Value: 79212001949 + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001173 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регист +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481450.9922 +Linkedid: 1724481440.9913 +Variable: __QC_CONFIRM +Value: 0 + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001173 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: < +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481450.9922 +Linkedid: 1724481440.9913 +Variable: __MOHCLASS +Value: + + +09:37:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001173 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724481450.9922 +Linkedid: 1724481440.9913 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +09:37:31 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481450.9916 +Linkedid: 1724481440.9913 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +Device: Local/10@from-queue +State: INUSE +DestChannel: PJSIP/13-00001173 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724481450.9922 +DestLinkedid: 1724481440.9913 +DialString: 13/sip + + +09:37:31 + +Event: DialState +Privilege: call,all +Device: Local/13@from-queue +State: INUSE +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +DestChannel: Local/13@from-queue-00000a9f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481450.9916 +DestLinkedid: 1724481440.9913 +DialStatus: RINGING + + +09:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001171 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724481450.9920 +Linkedid: 1724481440.9913 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +09:37:33 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: RINGTIME_MS +Value: 3122 +Device: PJSIP/12 +State: RINGING +DestChannel: Local/12@from-queue-00000a9e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481450.9914 +DestLinkedid: 1724481440.9913 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:37:34 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 3846 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 289 +LastCall: 1724481222 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: PJSIP/10-00001172 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724481450.9921 +DestLinkedid: 1724481440.9913 +DialStatus: RINGING + + +09:37:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001173 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724481450.9922 +Linkedid: 1724481440.9913 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +09:37:34 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/13 +State: RINGING +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: RINGTIME_MS +Value: 4427 +DestChannel: Local/13@from-queue-00000a9f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481450.9916 +DestLinkedid: 1724481440.9913 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:37:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001172 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/10 +State: INUSE + + +09:37:36 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 289 +LastCall: 1724481222 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-00001172 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +09:37:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001172 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:37:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001172 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/rt_769402-00001170)= + + +09:37:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001172 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +09:37:36 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481450.9918 +Linkedid: 1724481440.9913 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-00001172 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724481450.9921 +DestLinkedid: 1724481440.9913 +DialStatus: ANSWER +BridgeUniqueid: d05ff5bd-07f4-4369-894c-872f36a607f4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE + + +09:37:36 + +Event: HangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +DestChannel: Local/12@from-queue-00000a9e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481450.9914 +DestLinkedid: 1724481440.9913 +DialStatus: CANCEL + + +09:37:36 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000a9f;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481450.9916 +Linkedid: 1724481440.9913 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/12-00001171 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724481450.9920 +DestLinkedid: 1724481440.9913 +DialStatus: CANCEL +Variable: DIALSTATUS +Value: CANCEL + + +09:37:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: ARG1 +Value: +Device: Queue +State: NOT_INUSE + + +09:37:36 + +Event: AgentConnect +Privilege: agent,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-qu +Exten: s +Priority: 55 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Variable: MACRO_PRIORITY +Value: +Queue: 194 +Position: 1 +Count: 0 +Cause: 16 + + +09:37:36 + +Event: BridgeCreate +Privilege: call,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 330aa209-246b-4576-8829-58220484afb7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 + + +09:37:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481450.9918 +Linkedid: 1724481440.9913 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: BRIDGEPVTCALLID +Value: ff46-W5eAIaxBOfPU@10.243.214.42 +BridgeUniqueid: 330aa209-246b-4576-8829-58220484afb7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79212001949 +Destination: 12 +DestinationContext: ext-local +CallerID: "79212001949" <79212001949> +DestinationChannel: PJSIP/12-00001171 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481450.9915 +UserField: + + +09:37:36 + +Event: VarSet +Privilege: dialplan,all +Device: Local/13@from-queue +State: NOT_INUSE +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724481450.9915 +Linkedid: 1724481440.9913 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_DEPTH +Value: 0 +DestChannel: PJSIP/13-00001173 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724481450.9922 +DestLinkedid: 1724481440.9913 +DialStatus: CANCEL + + +09:37:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 0 + + +09:37:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:37:36 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000a9e;2 +ChannelState: 4 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724481450.9922 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere + + +09:37:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a9f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724481450.9917 +Linkedid: 1724481440.9913 +Extension: s +Application: Hangup +AppData: +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Hint: PJSIP/13&Custom +StatusText: Idle +Source: 79212001949 +Destination: 13 +DestinationContext: ext-local +CallerID: "79212001949" <79212001949> +DestinationChannel: PJSIP/13-00001173 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481450.9917 +UserField: +Device: Local/12@from-queue +State: NOT_INUSE +Variable: MACRO_DEPTH +Value: 1 + + +09:37:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000aa0;2 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: d05ff5bd-07f4-4369-894c-872f36a607f4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +09:37:36 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: BRIDGEPVTCALLID +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9943 + + +09:38:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001172 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001500;avgrxjitter=000.001101;stdevrxjitter=000.000121;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +09:38:38 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000121; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Hint: PJSIP/10&Custom + + +09:38:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001172 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481450.9921 +Linkedid: 1724481440.9913 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; +BridgeUniqueid: d05ff5bd-07f4-4369-894c-872f36a607f4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:38:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: DIALEDTIME_MS +Value: 68123 +BridgeUniqueid: d05ff5bd-07f4-4369-894c-872f36a607f4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing + + +09:38:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: ARG1 +Value: + + +09:38:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_PRIORITY +Value: +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 290 +LastCall: 1724481518 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Cause: 16 +Extension: h +Application: + + +09:38:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +09:38:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa0;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79212001949 +ConnectedLineName: 79212001949 +Language: ru +AccountCode: +Context: from-q +Exten: 194 +Priority: 53 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Cause: 16 +DestChannel: Local/10@from-queue-00000aa0;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79212001949 +DestConnectedLineName: 79212001949 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481450.9918 +DestLinkedid: 1724481440.9913 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +TalkTime: 62 +Reason: agent + + +09:38:39 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: MACRO_IN_HANGUP +Value: 1 +BridgeUniqueid: 330aa209-246b-4576-8829-58220484afb7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +Extension: h +Application: Macro +AppData: hangupcall, + + +09:38:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +09:38:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001170 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724481440.9913 +Linkedid: 1724481440.9913 +Variable: RTPAU +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +09:38:39 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FR +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79212001949 +CallerIDName: 79212001949 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481450.9919 +Linkedid: 1724481440.9913 +Variable: RTPAUDIOQOSMES +Value: 1 +Source: 79212001949 +Destination: 10 +DestinationContext: ext-local +CallerID: "79212001949" <79212001949> +DestinationChannel: PJSIP/10-00001172 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 68 +BillableSeconds: 61 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724481450.9919 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9944 + + +09:38:39 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/10@FROM-QUEUE +ActionID: 9947 + + +09:39:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:39:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +09:39:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-093903 +Variable: __YEAR +Value: 2024 + + +09:39:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +09:39:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +09:39:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:39:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +09:39:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 749 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +09:39:04 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:39:04 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T09 +Severity: Informational +Service: AMI +EventVersion: 1 +AccountID: admin +SessionID: 0x7f877004dec0 +LocalAddress: IPV4/TCP/0.0.0.0/5038 +RemoteAddress: IPV4/TCP/127.0.0.1/36714 +UsingPassword: 0 +SessionTV: 2024-08-24T09 + + +09:39:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 21 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(name-pres)=allowed_not_screened + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: 2 +Application: AGI +AppData: agi + + +09:39:05 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +CommandId: 2030258096 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: DB_RESULT +Value: + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724481543.9923 +Linkedid: 17244815 +Variable: MACRO_EXTEN +Value: 194 +Extension: 194 +Application: Macro +AppData: user-callerid, + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724481543.9923 + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: CHANEXTENCONTEXT +Value: Megafon_3-0000117 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-00001174 + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=74996497130 + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 172 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: AMPUSER= +Variable: AMPUSER +Value: + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: +Linkedid: 1724481543.9923 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 1 + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 32 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TTL=64 + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-use +Exten: s +Priority: 51 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: MACRO_PRIORITY +Value: +Extension: 194 +Application: Answer +AppData: + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/Megafon_3-00001174) + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724481543.9923 +Linkedid: +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: MacroExit +AppData: + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 8 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: QCIDP + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: __RVOL_MODE +Value: dontcare +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSI +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 19 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: 194 +Application: Set +AppData: QRETRY= +Variable: QRINGOPTS +Value: R + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 24 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: 194 +Application: Set +AppData: VQ_GOSUB= +Variable: QGOSUB +Value: + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 29 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: 194 +Application: Set +AppData: QPOSITION= +Variable: VQ_RULE +Value: + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: s +Application: NoOp +AppData: Recordings initialized +Variable: LOCAL(ARGC) +Value: 3 + + +09:39:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG2) +Value: q + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 749 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: __SIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE + + +09:39:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +09:39:14 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: 194 +Application: QueueLog +AppData: 194,1724481543.9923,NONE,DID,79217365096 + + +09:39:14 + +Event: Newexten +Privilege: dia +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +09:39:14 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: QUEUEJOINTIME +Value: 1724481554 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING +Queue: + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481554.9924 +Linkedid: 1724481543.9923 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481554.9924 +Linkedid: 1724481543.9923 +Variable: __RINGINGSENT +Value: TRUE + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481554.9924 +Linkedid: 1724481543.9923 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: __FROMQUEUEEXTEN +Value: 74996497130 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: __YEAR +Value: 2024 + + +09:39:14 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000aa1;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481554.9924 +LocalOneLinkedid: 1724481543.9923 +LocalTwoChannel: Local/12@from-queue-00000aa1;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 74996497130 +LocalTwoCallerIDName: 74996497130 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481554.9925 +LocalTwoLinkedid: 1724481543.9923 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000aa1;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481554.9924 +DestLinkedid: 1724481543.9923 +Queue: 194 +Interface: Local/12@from-qu + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481554.9926 +Linkedid: 1724481543.9923 +DestChannel: Local/12@from-queue-00000aa1;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724481554.9924 +DestLinkedid: 1724481543.9923 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 792173 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481554.9926 +Linkedid: 1724481543.9923 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481554.9926 +Linkedid: 1724481543.9923 +Variable: __DIRECTION +Value: + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724481554.992 +Linkedid: 1724481543.9923 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +09:39:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 3 +Uniqueid: 1724481554.9925 +Linkedid: 1724 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: DB_RESULT +Value: E +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: DB_RESULT +Value: 0 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +LocalOneChannel: Local/13@from-queue-00000aa2;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481554.9926 +LocalOneLinkedid: 1724481543.9923 +LocalTwoChannel: Local/13@from-queue-00000aa2;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 74996497130 +LocalTwoCallerIDName: 74996497130 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481554.9927 +LocalTwoLinkedid: 1724481543.9923 +Context: ext-local +Exten: 194 +LocalOptimization: No +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Priority: 53 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +DestChannel: Local/13@from-queue-00000aa2;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724481554.9926 +DestLinkedid: 1724481543.9923 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +09:39:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-call + + +09:39:14 + +Event: Newchannel +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724481554.9925 + + +09:39:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481554.9928 +Linkedid: 1724481543.9923 +Variable: __BLKVM_C +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000aa1;2 + + +09:39:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724481554.9925 +Linkedid: +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: QAGENT +Value: 13 +Extension: 13 +Application: Set +AppData: QAGENT=13 + + +09:39:14 + +Event: Newe +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: __QC_CONFIRM +Value: 0 +Extension: 13 +Application: GotoIf +AppData: 1?194,1 + + +09:39:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001174 + + +09:39:14 + +Event: VarSet +Privilege: dialplan, +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: ARG5 +Value: 0 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:39:14 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/M +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +LocalOneChannel: Local/10@from-queue-00000aa3;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724481554.9928 +LocalOneLinkedid: 1724481543.9923 +LocalTwoChannel: Local/10@from-queue-00000aa3;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 74996497130 +LocalTwoCallerIDName: 74996497130 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724481554.9929 +LocalTwoLinkedid: 1724481543.9923 +LocalOptimization: No +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000aa2;2 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000aa2;2 +Variable: MACRO_DEPTH +Value: 2 +DestChannel: Local/10@from-queue-00000aa3;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724481554.9928 +DestLinkedid: 1724481543.9923 +DialString: Local/10@from-queue/n + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=74996497130 + + +09:39:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from +Variable: MACRO_DEPTH +Value: 2 + + +09:39:14 + +Event: Va +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: 10 +Application: Set +AppData: QAGENT=10 +Variable: MACRO_DEPTH +Value: 2 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: __TTL +Value: 63 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +09:39:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: MACRO_DEPTH +Value: 2 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: ARG1 +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +09:39:14 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724481554 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000aa3;2 +Variable: CHANCONTEXT +Value: from-queue-00000aa3;2 + + +09:39:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000aa3;2 +Variable: CHANEXTENCONTEXT +Value: 10@from-queue-00000aa3;2 + + +09:39:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 7499 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:39:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: __FROMEXTEN +Value: 74996497130 +Extension: s +Application: Set +AppData: __FROMEXTEN=74996497130 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: R +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro +Exten: s +Priority: 4 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: HOTDESCKCHAN +Value: 10@from-queue-00000aa3;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000aa3;2 + + +09:39:15 + +Event: VarSet +Privilege: dial +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) +Variable: MACRO_DEPTH +Value: 2 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: __TTL +Value: 63 +Extension: s +Application: Set +AppData: __TTL=63 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TTL=63 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724481554.9925 +Linkedid: 17244 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 33 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=74996497130 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: ext-local + + +09:39:15 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: __PICKUPMARK +Value: 13 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: __ +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724481554.9927 +Linkedid: 1 +Variable: __TIMESTR +Value: 20240824-093914 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-093914 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 749 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARG3) +Value: 13 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=74996497130) +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-74996497130-20240824-093914-1724481554.9927.wav + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 172448 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724481 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +09:39:15 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: THISDIAL +Value: PJSIP/13/sip + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: __EXTTOCALL +Value: 10 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: LOCAL(ARG2) +Value: 10 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: NOW +Value: 1724 +Extension: s +Application: Set +AppData: NOW=1724481554 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 17244 +Linkedid: 1724481543.9923 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=74996497130) +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record +Exten: recordcheck +Priority: 20 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-74996497130-20240824-093914-1724481554.9929.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-74996497130-20240824-093914-1724481554.9929.wav,abi(), + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-rec +Exten: recordcheck +Priority: 1 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-74996497130-20240824-093914-1724481554.9925 +Variable: MACRO_DEPTH +Value: 1 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: s +Exten: recordcheck +Priority: 21 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724481554.9929 +Linkedid: 1724 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543. +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724481 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 17244815 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724481554.9929 +Linkedid: 17244815 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: MACRO_DEPTH +Value: 2 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: THISDI +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 749964971 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DE +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +09:39:15 + +Event: VarSet +Privilege: dia +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_CONTEXT +Value: macro-dial-one + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 7499 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstr +Priority: 7 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: DB_RESULT +Value: PJSIP/12 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 + + +09:39:15 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/10-00001175 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001175 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Variable: __CALLFILENAME +Value: external-10-74996497130-20240824-093914-1724481554.9929 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Variable: __EXTTOCALL +Value: 10 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001175 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Variable: __QCONTEXT +Value: 0 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001175 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Variable: __MOHCLASS +Value: +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: SIPHEADERKEYS +Value: + + +09:39:15 + +Event: +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: While +AppData: 0 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543. +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: DIALEDTIME +Value: + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001176 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481554.9931 +Linkedid: 1724481543.9923 +Variable: __REC_STATUS +Value: RECORDING + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001176 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481554. +Linkedid: 1724481543.9923 +Variable: __DAY +Value: 24 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001176 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481554.9931 +Linkedid: 1724481543.9923 +Variable: __NODEST +Value: 194 + + +09:39:15 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-00001176 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724481554.9931 +Linkedid: 1724481543.9923 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724481554.9931 +Linkedid: 1724481543.9923 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:39:15 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +DestChannel: PJSIP/10-00001175 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724481554.9930 +DestLinkedid: 1724481543.9923 +DialString: 10/sip + + +09:39:15 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.99 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Device: Local/10@from-queue +State: INUSE + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +09:39:15 + +Event: DialBegin +Privilege: call,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +DestChannel: PJSIP/12-00001176 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: func + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724481554.9 +Linkedid: 1724481543.9923 +Device: Local/12@from-queue +State: INUSE +DestChannel: Local/12@from-queue-00000aa1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481554.9924 +DestLinkedid: 1724481543.9923 +DialStatus: RINGING +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) +Variable: CWRING +Value: + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: DIALEDPEERNAME +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001177 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481554 +Linkedid: 1724481543.9923 +Variable: DIALEDPEERNUMBER +Value: 13/sip + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001177 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724481554.9932 +Linkedid: 1724481543.9923 +Variable: __YEA +Value: 20240824-093914 + + +09:39:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001177 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724481554.9932 +Linkedid: 1724481543.9923 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +09:39:15 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481554.9926 +Linkedid: 1724481543.9923 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/13-00001177 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724481554.9932 +DestLinkedid: 1724481543.9923 +DialString: 13/sip + + +09:39:15 + +Event: DialState +Privilege: call,all +Device: Local/13@from-queue +State: INUSE +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +DestChannel: Local/13@from-queue-00000aa2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481554.9926 +DestLinkedid: 1724481543.9923 +DialStatus: RINGING + + +09:39:18 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/13-00001177 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724481554.9932 +Linkedid: 1724481543.9923 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +09:39:18 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: RINGTIME_MS +Value: 3503 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: Local/13@from-queue-00000aa2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481554.9926 +DestLinkedid: 1724481543.9923 +DialStatus: RINGING + + +09:39:18 + +Event: DialState +Privilege: call,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3833 +DestChannel: PJSIP/12-00001176 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724481554.9931 +DestLinkedid: 1724481543.9923 +DialStatus: RINGING + + +09:39:18 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:39:19 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 4436 +Device: PJSIP/10 +State: RINGING +DestChannel: Local/10@from-queue-00000aa3;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481554.9928 +DestLinkedid: 1724481543.992 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 290 +LastCall: 1724481518 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:39:20 + +Event: ExtensionStatus +Privilege: c +Channel: PJSIP/10-00001175 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +09:39:20 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/10 +State: INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 290 +LastCall: 1724481518 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-00001175 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +09:39:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001175 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:39:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001175 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001174)= + + +09:39:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001175 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +09:39:20 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/13@from-queue-00000aa2;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481554.9926 +Linkedid: 1724481543.9923 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +BridgeUniqueid: 027255eb-b24b-4d5f-9bdb-d50997caed86 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +DestChannel: Local/13@from-queue-00000aa2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481554.9926 +DestLinkedid: 1724481543.9923 +DialStatus: CANCEL + + +09:39:20 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: Local/12@from-queue-00000aa1;2 +ActionID: 9949 +AccountCode: +Source: 74996497130 +Destination: 12 +DestinationContext: ext-local +CallerID: "74996497130" <74996497130> +DestinationChannel: PJSIP/12-00001176 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481554.9925 +UserField: +Device: Queue +State: NOT_INUSE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9925 +Linkedid: 1 +Queue: 194 +Position: 1 +Count: 0 +DestChannel: PJSIP/12-00001176 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724481554.9931 +DestLinkedid: 1724481543.9923 +DialStatus: CANCEL +Variable: MACRO_DEPTH + + +09:39:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: ARG1 +Value: +DestChannel: Local/10@from-queue-00000aa3;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724481554.9928 +DestLinkedid: 1724481543.9923 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +RingTime: 6 + + +09:39:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:39:20 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: af552e70-93a5-42aa-92ed-79fde430cb9b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +DestChannel: PJSIP/13-00001177 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 74996497130 +DestConnectedLineName: 74996497130 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724481554.9932 + + +09:39:20 + +Event: BridgeEnter +Privilege: call,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +AccountCode: +Source: 74996497130 +Destination: 13 +DestinationContext: ext-local +CallerID: "74996497130" <74996497130> +Channel: Local/13@from-queue-00000aa2;2 +DestinationChannel: PJSIP/13-00001177 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481554.9927 +UserField: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +Priority: 55 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_PRIORITY +Value: 3 +BridgeUniqueid: af55 + + +09:39:20 + +Event: VarSet +Privilege: dialplan,all +Device: Local/12@from-queue +State: NOT_INUSE +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: MACRO_CONTEXT +Value: + + +09:39:20 + +Event: VarSet +Privilege: dialplan,all +Device: Local/13@from-queue +State: NOT_INUSE +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +09:39:20 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000aa1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724481554.9925 +Linkedid: 1724481543.9923 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: + + +09:39:20 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/12 +State: NOT_INUSE +BridgeUniqueid: af552e70-93a5-42aa-92ed-79fde430cb9b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000aa2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000aa3;1 +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:39:20 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-o +Exten: s +Priority: 1 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000aa3;2 +Extension: s +Application: Hangup +AppData: + + +09:39:20 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481554.9927 +Linkedid: 1724481543.9923 +Variable: BRIDGEPVTCALLID +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9953 + + +09:39:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001175 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001500;avgrxjitter=000.001130;stdevrxjitter=000.000157;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +09:39:49 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/10-00001175 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000157; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +09:39:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001175 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 74996497130 +ConnectedLineName: 74996497130 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724481554.9930 +Linkedid: 1724481543.9923 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; +BridgeUniqueid: 027255eb-b24b-4d5f-9bdb-d50997caed86 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +09:39:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: ANSWEREDTIME_MS +Value: 28991 +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 291 +LastCall: 1724481589 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9954 +BridgeUniqueid: 027255eb-b24b-4d5f-9bdb-d50997caed86 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +09:39:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_PRIORITY +Value: 3 + + +09:39:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481554 +Linkedid: 1724481543.9923 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +09:39:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +09:39:49 + +Event: AgentComplete +Privilege: agent,all +Device: PJSIP/10 +State: NOT_INUSE +Channel: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724481554.9929 +Linkedid: 1724481543.9923 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Source: 74996497130 +Destination: 10 +DestinationContext: ext-local +CallerID: "74996497130" <74996497130> +DestinationChannel: PJSIP/10-00001175 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 34 +BillableSeconds: 28 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724481554.9929 +UserField: +Cause: 16 +Cause-txt: Normal Clearing + + +09:39:49 + +Event: SoftHangupRequest +Privilege: call,all +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-00001174 +ActionID: 9955 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистрату +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724481554.9928 +Linkedid: 1724481543.9923 +Variable: BRIDGEPEER +BridgeUniqueid: af552e70-93a5-42aa-92ed-79fde430cb9b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing + + +09:39:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001174 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: +Priority: 1 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +09:39:49 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: af552e70-93a5-42aa-92ed-79fde430cb9b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-00001174 +ActionID: 9956 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Extension: s +Application: Hangup +AppData: +Source: 74996497130 +Destination: 194 +DestinationContext: ext-queues +CallerID: "74996497130" <74996497130> +DestinationChannel: Local/12@from-queue-00000aa1;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481543.9923 +UserField: +Variable: MACRO_PRIORITY + + +09:39:49 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 74996497130 +CallerIDName: 74996497130 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724481543.9923 +Linkedid: 1724481543.9923 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9957 +Source: 74996497130 +Destination: 194 +DestinationContext: ext-queues +CallerID: "74996497130" <74996497130> +DestinationChannel: Local/13@from-queue-00000aa2;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 6 +BillableSeconds: 6 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724481543.9923 +UserField: + + +09:41:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T09 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +09:41:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T09 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE44-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 988003334419 +Priority: 1 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: ARG3 +Value: +Extension: 988003334419 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: AMPUSER +Value: 13 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +09:49:08 + +Event: N +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=13) + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 +Variable: MACRO_DEPTH +Value: 1 + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724482148.9933 +Linkedid: 172448214 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 24 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(GROUP(concurrency_limit)=13) + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-calleri +Exten: s +Priority: 30 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CDR(cnum)=13 + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 988003334419 +Priority: 2 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: LOCAL(ARG2) +Value: 988003334419 +Extension: 988003334419 +Application: Gosub +AppData: sub-record-check,s,1(out,988003334419,dontcare) + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: s +Application: NoOp +AppData: Recordings initialized +Variable: __MON_FMT +Value: wav + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 2 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: out +Application: Set +AppData: RECMODE=yes +Variable: RECMODE +Value: yes + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 17244821 +Linkedid: 1724482148.9933 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: LOCAL(ARGC) +Value: 3 + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-988003334419-13-20240824-094908-1724482148.9933 +Variable: __CALLFILENAME +Value: out-988003334419 + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: out +Application: Return +AppData: +Variable: ARG3 +Value: + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 988003334419 +Priority: 6 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MOHCLAS +Value: Megafon +Extension: 988003334419 +Application: Set +AppData: MOHCLASS=default + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: ARG1 +Value: 6 +Extension: s +Application: Macro +AppData: outbound-callerid,6 + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) +Variable: MACRO_DEPTH +Value: 2 + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +09:49:08 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 13 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Hangup() + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: 2 + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 +Variable: MACRO_DEPTH +Value: 2 + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724482148.9933 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: s +Application: Set +AppData: OUTNUM=+7800 +Variable: MACRO_DEPTH +Value: 1 + + +09:49:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoad + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +78003334419 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+78003334419) + + +09:49:08 + +Event: +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +78003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +78003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: s +Application: Dial +AppData: PJSIP/+78003334419@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+78003334419^988003334419^6^1724482148^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +09:49:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +78003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: PROGRESSTIME +Value: + + +09:49:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724482148.9934 +Linkedid: 1724482148.9933 +Variable: __REC_STATUS +Value: RECORDING + + +09:49:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001179 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724482148.9934 +Linkedid: 1724482148.9933 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +09:49:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001179 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 7 +Uniqueid: 1724482148.9934 +Linkedid: 1724482148.9933 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +09:49:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402- +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724482148.9934 +Linkedid: 1724482148.9933 +Extension: s +Application: While +AppData: 0 +Variable: WHILE_0 +Value: + + +09:49:09 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001179 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 988003334419 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724482148.9934 +DestLinkedid: 1724482148.9933 +DialString: +78003334419@rt_769402 + + +09:49:09 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: PROGRESSTIME_MS +Value: 837 +Device: PJSIP/13 +State: INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:49:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: 988003334419 +Application: AppDial +AppData: (Outgoing Line) +Variable: DIALEDPEERNUMBER +Value: +78003334419@rt_769402 + + +09:49:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001179 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724482148.9934 +Linkedid: 1724482148.9933 +Variable: LOCAL(ARGC) +Value: 6 +Extension: s +Application: NoOp +AppData: email notifications disabled..exiting. + + +09:49:09 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/13-00001178 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482148.9933 +Linkedid: 17244 +Variable: GOSUB_RETVAL +Value: +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-00001179 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 988003334419 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724482148.9934 +DestLinkedid: 1724482148.9933 +DialStatus: ANSWER + + +09:49:09 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: bd5a3f6f-ce8b-4676-b02e-3c13f97fcdee +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/13-00001178 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 925328b2-bb3d-4b9c-955b-d8621963817b + + +09:49:19 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001179 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482148.9934 +Linkedid: 1724482148.9933 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4b08d2c8 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482159.817897 +SentRTP: 1724562144 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x588ba674 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37752 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:49:24 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001179 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482148.9934 +Linkedid: 1724482148.9933 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4b08d2c8 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482164.815844 +SentRTP: 1724602144 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x588ba674 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 38002 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:49:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:49:26 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13-00001178 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482148.9934 +Linkedid: 1724482148.9933 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: bd5a3f6f-ce8b-4676-b02e-3c13f97fcdee +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:49:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_EXTEN +Value: + + +09:49:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +09:49:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: MACRO_CONTEXT +Value: +BridgeUniqueid: bd5a3f6f-ce8b-4676-b02e-3c13f97fcdee +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: Hangup +AppData: + + +09:49:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001178 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724482148.9933 +Linkedid: 1724482148.9933 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.002000;avgrxjitter=000.001346;stdevrxjitter=000.000170;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stde + + +09:49:26 + +Event: QueueMemberStatus +Privilege: agent,all +AccountCode: +Source: 78162769402 +Destination: 988003334419 +DestinationContext: from-internal +CallerID: "" <78162769402> +Channel: PJSIP/RT_769402 +DestinationChannel: PJSIP/rt_769402-00001179 +LastApplication: Dial +LastData: PJSIP/+78003334419@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 17 +BillableSeconds: 16 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724482148.9933 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724482148.9934 +Linkedid: 1724482148.9933 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9959 +Queue: 194 +MemberName: +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 988003334419 +Priority: 1 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-0000117a + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: +Linkedid: 1724482176.9935 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 21 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 988003334419 +Priority: 2 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: LOCAL(ARGC) +Value: 3 +Extension: 988003334419 +Application: Gosub +AppData: sub-record-check,s,1(out,988003334419,dontcare) + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратур +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __MONTH +Value: 08 + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: __MON_FMT +Value: wav + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 4 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) +Variable: RECMODE +Value: yes + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: LOCAL(ARGC) +Value: 3 + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/out-988003334419-13-20240824-094936-1724482176.9935.wav,abi(), +Variable: __CALLFILENAME +Value: out-988003334419-13-20240824-094936-1724482176.9935 + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724482176.9935 +Linkedid: +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-988003334419-13-20240824-094936-1724482176.9935.wav +Variable: __REC_STATUS +Value: RECORDING + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSI +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: ARG1 +Value: +Extension: out +Application: Return +AppData: + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 9 +Priority: 7 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: 988003334419 +Application: Set +AppData: _CALLERIDNAMEINTERNAL=Регистратура_2 +Variable: MOHCLASS +Value: default + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 988003334419 +Priority: 11 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: 988003334419 +Application: Macro +AppData: dialout-trunk,6,+78003334419,,off +Variable: MACRO_CONTEXT +Value: from-internal + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регист +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистр +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 6 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13-0000117a +Variable: MACRO_DEPTH +Value: 2 + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 14 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Hangup() + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-out +Exten: s +Priority: 20 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> +Extension: s +Application: Set +AppData: USEROUTCID="SecretyDolgoletiya" <79217365096> + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +09:49:36 + +Event: VarSet +Privilege: dialpl +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 32 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)=78162769402) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 36 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=prohib_passed_screen) +Variable: MACRO_DEPTH +Value: 2 + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 41 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnam)= + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEP +Value: +78003334419 +Extension: s +Application: Set +AppData: OUTNUM=+78003334419 + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) +Variable: MACRO_DEPTH +Value: 1 + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_EXTEN +Value: 988003334419 +Extension: s +Application: MacroExit +AppData: + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +78003334419 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+78003334419) + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +78003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 25 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID +Variable: MACRO_DEPTH +Value: 1 + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +7800333441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/+78003334419@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+78003334419^988003334419^6^1724482176^^78162769402) + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +Variable: PROGRESSTIME_MS +Value: + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_76 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +Variable: __MIXMON_ID +Value: + + +09:49:36 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 988003334419 +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +Variable: __DIAL_OPTIONS +Value: HhTtr +Extension: 988003334419 +Application: AppDial +AppData: (Outgoing Line) + + +09:49:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info + + +09:49:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 8 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +Extension: s +Application: ExecIf +AppData: 0?Set(sipheader= +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +Extension: s +Application: While +AppData: 0 +Variable: END_WHILE_0 +Value: + + +09:49:36 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-0000117b +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 988003334419 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724482176.9936 +DestLinkedid: 1724482176.9935 +DialString: +78003334419@rt_769402 + + +09:49:37 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-0000117a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 28 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: PROGRESSTIME_MS +Value: 849 +DestChannel: PJSIP/rt_769402-0000117b +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 988003334419 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 988003334419 +DestPriority: 1 +DestUniqueid: 1724482176.9936 +DestLinkedid: 1724482176.9935 +DialStatus: PROGRESS +Device: PJSIP/13 +State: INUSE +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:49:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-tr +Exten: 988003334419 +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +Extension: 988003334419 +Application: AppDial +AppData: (Outgoing Line) +Variable: LOCAL(ARG4) +Value: 1724482176 +Device: PJSIP/rt_769402 +State: INUSE + + +09:49:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +Variable: ARG3 +Value: +Extension: s +Application: Return +AppData: + + +09:49:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 781 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-0000117b +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 988003334419 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724482176.9936 +DestLinkedid: 1724482176.9935 +DialStatus: ANSWER +BridgeUniqueid: 0c55ac75-b90e-4054-a921-8051fc65c230 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +09:49:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: BRIDGEPVTCALLID +Value: aa9370f5-2db9-436d-ab2e-467a3e6496dc + + +09:49:42 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482182.275765 +SentRTP: 1724522176 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:49:47 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482187.276202 +SentRTP: 1724562176 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 2 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:49:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482192.275951 +SentRTP: 1724602176 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:49:57 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482197.276377 +SentRTP: 1724642176 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37854 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:02 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482202.275769 +SentRTP: 1724682176 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 38104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:07 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482207.280991 +SentRTP: 1724722176 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 38354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:12 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482212.277007 +SentRTP: 1724762176 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 38604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 11 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:17 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.2 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482217.276451 +SentRTP: 1724802176 +SentPackets: 2001 +SentOctets: 320160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 1 +Report0CumulativeLost: 1 +Report0HighestSequence: 38854 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:22 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.2 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482222.276057 +SentRTP: 1724842176 +SentPackets: 2251 +SentOctets: 360160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 39104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:27 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.2 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482227.277360 +SentRTP: 1724882176 +SentPackets: 2501 +SentOctets: 400160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 39354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:32 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.2 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482232.279938 +SentRTP: 1724922176 +SentPackets: 2751 +SentOctets: 440160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 39604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:37 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482237.276175 +SentRTP: 1724962176 +SentPackets: 3001 +SentOctets: 480160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 39854 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:42 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482242.276405 +SentRTP: 1725002176 +SentPackets: 3251 +SentOctets: 520160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 40104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:47 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482247.275780 +SentRTP: 1725042176 +SentPackets: 3501 +SentOctets: 560160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 40354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:50:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482252.276310 +SentRTP: 1725082176 +SentPackets: 3751 +SentOctets: 600160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 40604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:51:02 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482262.276652 +SentRTP: 1725162176 +SentPackets: 4251 +SentOctets: 680160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 41104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:51:07 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482267.275973 +SentRTP: 1725202016 +SentPackets: 4500 +SentOctets: 720000 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 41354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:51:12 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482272.276774 +SentRTP: 1725242176 +SentPackets: 4751 +SentOctets: 760160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 41604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:51:17 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482277.276969 +SentRTP: 1725282176 +SentPackets: 5001 +SentOctets: 800160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 41854 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:51:27 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482287.275973 +SentRTP: 1725362176 +SentPackets: 5501 +SentOctets: 880160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 42354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:51:32 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482292.284815 +SentRTP: 1725402176 +SentPackets: 5751 +SentOctets: 920160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 42604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:51:37 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482297.276554 +SentRTP: 1725442176 +SentPackets: 6001 +SentOctets: 960160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 42854 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:51:42 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482302.276474 +SentRTP: 1725482176 +SentPackets: 6251 +SentOctets: 1000160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 43104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:51:47 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482307.276325 +SentRTP: 1725522176 +SentPackets: 6501 +SentOctets: 1040160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 43354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:51:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482312.275864 +SentRTP: 1725562176 +SentPackets: 6751 +SentOctets: 1080160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 43604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:02 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482322.276699 +SentRTP: 1725642176 +SentPackets: 7251 +SentOctets: 1160160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 44104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:07 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482327.276006 +SentRTP: 1725682176 +SentPackets: 7501 +SentOctets: 1200160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 44354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:12 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482332.275771 +SentRTP: 1725722176 +SentPackets: 7751 +SentOctets: 1240160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 44604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:17 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482337.284498 +SentRTP: 1725762176 +SentPackets: 8001 +SentOctets: 1280160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 44855 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:22 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482342.276309 +SentRTP: 1725802176 +SentPackets: 8251 +SentOctets: 1320160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 45104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:27 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482347.278093 +SentRTP: 1725842176 +SentPackets: 8501 +SentOctets: 1360160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 45354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:32 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482352.279572 +SentRTP: 1725882176 +SentPackets: 8751 +SentOctets: 1400160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 45604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:37 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482357.275746 +SentRTP: 1725922176 +SentPackets: 9001 +SentOctets: 1440160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 45854 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:42 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482362.276072 +SentRTP: 1725962176 +SentPackets: 9251 +SentOctets: 1480160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 46104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:47 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482367.277153 +SentRTP: 1726002176 +SentPackets: 9501 +SentOctets: 1520160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 46354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:52:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482372.276680 +SentRTP: 1726042176 +SentPackets: 9751 +SentOctets: 1560160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 46604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:53:02 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482382.276191 +SentRTP: 1726122176 +SentPackets: 10251 +SentOctets: 1640160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 47104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:53:07 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482387.275917 +SentRTP: 1726162176 +SentPackets: 10501 +SentOctets: 1680160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 47354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:53:12 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482392.276830 +SentRTP: 1726202176 +SentPackets: 10751 +SentOctets: 1720160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 47604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:53:17 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482397.278970 +SentRTP: 1726242176 +SentPackets: 11001 +SentOctets: 1760160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 47854 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:53:27 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482407.276681 +SentRTP: 1726322176 +SentPackets: 11501 +SentOctets: 1840160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 48354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:53:32 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482412.277281 +SentRTP: 1726362176 +SentPackets: 11751 +SentOctets: 1880160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 48604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:53:42 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482422.276522 +SentRTP: 1726442176 +SentPackets: 12251 +SentOctets: 1960160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 49104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:53:47 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482427.276361 +SentRTP: 1726482176 +SentPackets: 12501 +SentOctets: 2000160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 49354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:53:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482432.276408 +SentRTP: 1726522176 +SentPackets: 12751 +SentOctets: 2040160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 49604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:54:07 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482447.275979 +SentRTP: 1726642176 +SentPackets: 13501 +SentOctets: 2160160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 50354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:54:12 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482452.276019 +SentRTP: 1726682016 +SentPackets: 13750 +SentOctets: 2200000 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 50604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:54:17 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482457.277284 +SentRTP: 1726722176 +SentPackets: 14001 +SentOctets: 2240160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 50854 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:54:22 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482462.275572 +SentRTP: 1726762016 +SentPackets: 14250 +SentOctets: 2280000 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 51104 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:54:27 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482467.278006 +SentRTP: 1726802176 +SentPackets: 14501 +SentOctets: 2320160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 51354 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:54:32 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482472.277101 +SentRTP: 1726842176 +SentPackets: 14751 +SentOctets: 2360160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 51604 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:54:37 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.3 +SSRC: 0x17fe0f37 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724482477.276879 +SentRTP: 1726882176 +SentPackets: 15001 +SentOctets: 2400160 +Report0SourceSSRC: 0xfc4ddd9a +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 51854 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +09:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +09:54:45 + +Event: VarSet +Privilege: d +Channel: PJSIP/13-0000117a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 0c55ac75-b90e-4054-a921-8051fc65c230 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +09:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_EXTEN +Value: + + +09:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hang +Exten: h +Priority: 1 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +09:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000117b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 988003334419 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724482176.9936 +Linkedid: 1724482176.9935 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +BridgeUniqueid: 0c55ac75-b90e-4054-a921-8051fc65c230 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +09:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Variable: RTPAUDIOQOS +Value: ssrc=392847556;themssrc=1070529503;lp=0;rxjitter=0.000000;rxcount=15423;txjitter=0.001375;txcount=15426;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Extension: s +Application: Hangup +AppData: + + +09:54:45 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-0000117a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 988003334419 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724482176.9935 +Linkedid: 1724482176.9935 +Variable: RTPAUDIOQOSMES +Value: 1 +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Source: 78162769402 +Destination: 988003334419 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000117b +LastApplication: Dial +LastData: PJSIP/+78003334419@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 309 +BillableSeconds: 308 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724482176.9935 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9960 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: +Wrapuptime: 0 + + +09:54:45 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/13 +ActionID: 9961 + + +09:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: s +Application: GotoIf +AppData: 0?initialized +Variable: LOCAL(ARGC) +Value: 3 + + +09:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: __YEAR +Value: 2024 +Extension: s +Application: +AppData: __YEAR=2024 + + +09:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: +Linkedid: 1724482724.9937 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG1) +Value: dontcare + + +09:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 +Variable: __FROM_DID +Value: 79217365096 + + +09:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +09:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: 79217365096 +Application: Ans +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +09:58:44 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Device: PJSIP/Megafon_3 +State: INUSE + + +09:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +09:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +09:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: 2 +Application: AGI +AppData: agi + + +09:58:45 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +CommandId: 515958044 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +09:58:45 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +CommandId: 943316664 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +09:58:45 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +CommandId: 499460743 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +09:58:46 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +CommandId: 803141968 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: DB_RESULT +Value: +Extension: 194 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +09:58:46 + +Event: VarSet +Privilege: dialpl +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +09:58:46 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: CHANEXTEN +Value: Megafon_3-0000117c +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-0000117c + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-0000117c +Variable: MACRO_DEPTH +Value: 1 + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +09:58:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 172448 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:58:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 17244827 +Linkedid: 1724482724.9937 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +09:58:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 53 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: s +Application: Set +AppData: CDR(cnum)=79992849942 +Variable: MACRO_DEPTH +Value: 1 + + +09:58:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79992849942 + + +09:58:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000117c)=TRUE + + +09:58:46 + +Event: Newexten +Privilege: dialplan, +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: MacroExit +AppData: + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: VQ_CIDPP +Value: +Extension: 194 +Application: Set +AppData: VQ_CIDPP= + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: QJOINMSG +Value: custom/Privet_23_08 + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 20 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: VQ_RETRY +Value: +Extension: 194 +Application: Set +AppData: VQ_RETRY= + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 31 +Uniqueid: 172448 +Linkedid: 1724482724.9937 +Variable: VQ_POSITION +Value: +Extension: 194 +Application: Set +AppData: VQ_POSITION= + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against dontcare +Variable: LOCAL(ARGC) +Value: 3 + + +09:58:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: s +Application: Return +AppData: +Variable: ARG3 +Value: + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ex +Exten: 194 +Priority: 35 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: GotoIf +AppData: 0?QVQANNOUNCE + + +09:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +09:58:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 47 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: 194 +Application: ExecIf +AppData: 0?Set(__MOHCLASS=) +Variable: VQ_MOH +Value: + + +09:58:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: 194 +Application: Queue +AppData: 194,tR,, +Variable: QUEUEJOINTIME +Value: 1724482734 + + +09:58:54 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: RINGING +Channel: Local/12@fro +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724482734.9938 +Linkedid: 1724482724.9937 +Queue: 194 +Position: 1 +Count: 1 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +09:58:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724482734.9938 +Linkedid: 1724482724.9937 +Variable: __REVERSAL_REJECT +Value: FALSE + + +09:58:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724482734.9938 +Linkedid: 1724482724.9937 +Variable: __DIRECTION +Value: + + +09:58:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-que +Exten: 12 +Priority: 1 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000117c + + +09:58:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724482734.9939 +Linkedid: 1724482 +Variable: __MON_FMT +Value: wav + + +09:58:54 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000aa4;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724482734.9938 +LocalOneLinkedid: 1724482724.9937 +LocalTwoChannel: Local/12@from-queue-00000aa4;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79992849942 +LocalTwoCallerIDName: 79992849942 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724482734.9939 +LocalTwoLinkedid: 1724482724.9937 +LocalOptimization: No + + +09:58:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482734.9940 +Linkedid: 1724482724.9937 +DestChannel: Local/12@from-queue-00000aa4;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724482734.9938 +DestLinkedid: 1724482724.9937 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +09:58:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482734.9940 +Linkedid: 1724482724.9937 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482734.9940 +Linkedid: 1724482724.9937 +Variable: __REC_STATUS +Value: INITIALIZED + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: __FROM_DID +Value: 79217365096 + + +09:58:55 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000aa5;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724482734.9940 +LocalOneLinkedid: 1724482724.9937 +LocalTwoChannel: Local/13@from-queue-00000aa5;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79992849942 +LocalTwoCallerIDName: 79992849942 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724482734.994 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482734.9942 +Linkedid: 1724482724.9937 +DestChannel: Local/13@from-queue-00000aa5;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724482734.9940 +DestLinkedid: 1724482724.9937 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482734.9942 +Linkedid: 1724482724.9937 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482734.9942 +Linkedid: 1724482724.9937 +Variable: __DAY +Value: 24 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: __NODEST +Value: 194 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: __MOHCLASS +Value: + + +09:58:55 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000aa6;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724482734.9942 +LocalOneLinkedid: 17244827 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 3 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9 +DestChannel: Local/10@from-queue-00000aa6;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724482734.9942 +DestLinkedid: 1724482724.9937 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 13 +Application: Set +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-lo +Exten: 13 +Priority: 1 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG4 +Value: 0 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724482734.9941 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: CHANEXTENCONTEXT +Value: 13@from-queue-00000aa5;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000aa5;2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000aa5;2 +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724482734.9941 +Linkedid: 1724 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Extension: s +Application: Set +AppData: CALLERID(number)=79992849942 +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dial +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 2 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: 10 +Application: Set +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724482734.9943 +Linkedid: 172448 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +09:58:55 + +Event: V +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG4 +Value: 0 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724482734.9943 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-use +Exten: s +Priority: 4 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000aa6;2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79992849942 + + +09:58:55 + +Event: VarSet +Privilege: dialp +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: +Linkedid: 1724482724.9937 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: QAGENT +Value: 12 +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG3 +Value: 0 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: AMPUSER +Value: 79992849942 +Extension: s +Application: Set +AppData: AMPUSER=79992849942 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: s +Application: Set +AppData: CDR(cnum)=79992849942 +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 799928499 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: __FROMEXTEN +Value: 79992 +Extension: s +Application: Set +AppData: __FROMEXTEN=79992849942 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79992849942 and 12 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: r +Application: Gosub +AppData: recordcheck,1(yes,external,12) +Variable: MACRO_DEPTH +Value: 1 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79992849942-20240824-095854-1724482734.9939 +Variable: MACRO_DEPTH +Value: 1 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: rec +Priority: 21 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724482734.9939 +Linkedid: 172 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724482734.9 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MAC +Value: 12 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_PRIORITY +Value: 3 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724482734 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 799928 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-095854 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79992849942) + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79992849942-20240824-095854-1724482734.9941.wav,abi(), + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record- +Exten: recordcheck +Priority: 23 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7999284 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 17 +Linkedid: 1724482724.9937 +Variable: ITER +Value: 1 +Extension: dstring +Application: Set +AppData: ITER=1 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 1?godial + + +09:58:55 + +Event: VarSet +Privilege: di +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724 +Linkedid: 1724482724.9937 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 9 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 7999 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial- +Exten: dstring +Priority: 10 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724482734.9941 +Linkedid: 172448 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482734.9944 +Linkedid: 1724482724.9937 +Variable: __CALLFILENAME +Value: external-13-79992849 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117d +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482734.9944 +Linkedid: 1724482724.9937 +Variable: __EXTTOCALL +Value: 13 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 7999284994 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482734.9944 +Linkedid: 1724482724.9937 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000117d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: fr +Exten: s +Priority: 55 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: PROGRESSTIME_MS +Value: + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000117d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79992849942 +ConnectedLineName: 7999284994 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724482734.9944 +Linkedid: 1724482724.9937 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724482734 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79992849942) + + +09:58:55 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79992849942-20240824-095854-1724482734.9943.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79992849942-20240824-095854-1724482734.9943.wav,abi(), + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_EXTEN +Value: s + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.993 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: DB_RESULT +Value: PJSIP/10 + + +09:58:55 + +Event: VarSet +Privilege: dial +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: ctset +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +09:58:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +09:58:55 + +Event: VarSet +Privilege: +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +09:58:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: s +Application: +AppData: 1?godial +Variable: MACRO_DEPTH +Value: 2 + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 +DestChannel: PJSIP/13-0000117d +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724482734.9944 +DestLinkedid: 1724482724.9937 +DialString: 13/sip + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +DestChannel: Local/13@from-queue-00000aa5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482734.9940 +DestLinkedid: 1724482724.9937 +DialStatus: RINGING +Variable: DIALEDTIME_MS +Value: + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000117e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482734.9945 +Linkedid: 172 +Variable: __RECORD_ID +Value: Local/12@from-queue-00000aa4;2 +Device: Local/13@from-queue +State: INUSE + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482734.9945 +Linkedid: 1724482724.9937 +Variable: __EXTTOCALL +Value: 12 + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000117e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482734.9945 +Linkedid: 1724482724.9937 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000117c + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000117e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724482734.9945 +Linkedid: 1724482724.9937 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +09:58:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000117e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724482734.9945 +Linkedid: 1724482724.9937 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000117f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: fro +Exten: s +Priority: 1 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Variable: __MIXMON_ID +Value: + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000117f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Variable: __EXTTOCALL +Value: 10 + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000117f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Variable: __FROMQUEUEEXTEN +Value: 79992849942 + + +09:58:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000117f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +09:58:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000117f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +09:58:56 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-qu +Exten: s +Priority: 55 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/12-0000117e +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724482734.9945 +DestLinkedid: 1724482724.9937 +DialString: 12/sip + + +09:58:56 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +DestChannel: Local/12@from-queue-00000aa4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482734.9938 +DestLinkedid: 1724482724.9937 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE + + +09:58:58 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3452 +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/13 +State: RINGING +DestChannel: Local/13@from-queue-00000aa5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482734.9940 +DestLinkedid: 1724482724.9937 +DialStatus: RINGING +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:58:58 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3839 +DestChannel: PJSIP/10-0000117f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724482734.9946 +DestLinkedid: 1724482724.9937 +DialStatus: RINGING +Device: PJSIP/10 +State: RINGING + + +09:58:58 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 291 +LastCall: 1724481589 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000117c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +DestChannel: Local/10@from-queue-00000aa6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482734.9942 +DestLinkedid: 1724482724.9937 +DialStatus: RINGING + + +09:58:59 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 4438 +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +DestChannel: PJSIP/12-0000117e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724482734.9945 +DestLinkedid: 1724482724.9937 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:59:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000117f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: auto-blkvm + + +09:59:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000117f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 2 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Variable: __MACRO_RESULT +Value: +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 291 +LastCall: 1724481589 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Set +AppData: __MACRO_RESULT= + + +09:59:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000117f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +09:59:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000117f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 7 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +09:59:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000117f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 172 +Linkedid: 1724482724.9937 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: MacroExit +AppData: + + +09:59:03 + +Event: DialEnd +Privilege: call,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +DestChannel: PJSIP/10-0000117f +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 + + +09:59:03 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@fro +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724482734.9942 +Linkedid: 1724482724.9937 +BridgeUniqueid: a1fe64ef-8597-41e8-ac23-73bf0a4d211d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: ca6272ef-a6dc-40cf-9a2f-b0f1688fc8ca +Device: Local/10@from-queue +State: INUSE + + +09:59:03 + +Event: DialEnd +Privilege: call,all +Device: Local/10@from-queue +State: INUSE +Exten: 194 +Context: ext-queues +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +AccountCode: +Source: 79992849942 +Destination: 12 +DestinationContext: ext-local +CallerID: "79992849942" <79992849942> +Channel: PJSIP/Megafon_3-0000117c +DestinationChannel: PJSIP/12-0000117e +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 09 +AnswerTime: +EndTime: 2024-08-24 09 +Duration: 8 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724482734.9939 +UserField: +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Priority: 53 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +DestChannel: Local/13@from-queue-00000aa5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482734.9940 +DestLinkedid: 1724482724.9937 +DialStatus: CANCEL + + +09:59:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 12 +ConnectedLineName: Регистратур +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/12-0000117e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724482734.9945 +DestLinkedid: 1724482724.9937 +DialStatus: CANCEL + + +09:59:03 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000aa4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724482734.9939 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/12 +State: NOT_INUSE +Extension: s +Application: GotoIf +AppData: 1?theend +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +09:59:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +DestChannel: PJSIP/13-0000117d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79992849942 +DestConnectedLineName: 79992849942 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724482734.9944 +DestLinkedid: 1724482724.9937 +DialStatus: CANCEL +Variable: MACRO_EXTEN +Value: 13 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +09:59:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 55 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_CONTEXT +Value: + + +09:59:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724482734.9941 +Linkedid: 1724482724.9937 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +09:59:03 + +Event: Hangup +Privilege: call,all +Channel: Local/13@from +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724482734.9944 +Linkedid: 1724482724.9937 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: GotoIf +AppData: 1?theend +Device: PJSIP/13 +State: NOT_INUSE + + +09:59:03 + +Event: DeviceStateChange +Privilege: call,all +BridgeUniqueid: 772856cc-8ea5-47de-be66-f739c60160a7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: BRIDGEPEER +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9967 +Device: Local/13@from-queue +State: NOT_INUSE + + +10:00:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724482734.9942 +Linkedid: 1724482724.9937 +Variable: RTPAUDIOQOSBRIDGED +Value: ssrc=831812686;themssrc=327996;lp=0;rxjitter=0.001250;rxcount=5201;txjitter=0.000500;txcount=5156;rlp=0;rtt=0.000000;rxmes=85.367286;txmes=85.367289 + + +10:00:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482724.9937 +Linkedid: 1724482724.9937 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000179; mintxmes=085.362248; maxtxmes=085.367289; avgtxmes=085.367033; stdevtxmes=000.001098; + + +10:00:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa6;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_CONTEXT +Value: ext-local + + +10:00:28 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_PRIORITY +Value: + + +10:00:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +10:00:28 + +Event: Newexten +Privilege: dialplan,all +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: Local/10@from-queue-00000aa6;2 +ActionID: 9968 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Variable: MACRO_PRIORITY +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: a1fe64ef-8597-41e8-ac23-73bf0a4d211d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:00:28 + +Event: VarSet +Privilege: call,all +Channel: PJSIP/10-0000117f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Variable: RTPAUDIOQOS +Value: ssrc=588161652;themssrc=3866480525;lp=0;rxjitter=0.000000;rxcount=4252;txjitter=0.001250;txcount=4273;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE + + +10:00:28 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-0000117f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79992849942 +ConnectedLineName: 79992849942 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724482734.9946 +Linkedid: 1724482724.9937 +Variable: RTPAUDIOQOSMES +Value: 1 +Source: 79992849942 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79992849942" <79992849942> +DestinationChannel: Local/12@from-queue-00000aa4;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 09 +Duration: 19 +BillableSeconds: 19 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724482724.9937 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9969 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 292 +LastCall: 1724482828 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:00:28 + +Event: Hangup +Privilege: call,all +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: Local/10@from-queue-00000aa6;2 +ActionID: 9970 +AccountCode: +Source: 79992849942 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79992849942" <79992849942> +DestinationChannel: Local/10@from-queue-00000aa6;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 10 +Duration: 93 +BillableSeconds: 93 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724482724.9937 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79992849942 +CallerIDName: 79992849942 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: ext-local +Exten: s +Priority: 4 +Uniqueid: 1724482734.9943 +Linkedid: 1724482724.9937 +Variable: MACRO_PRIORITY +Extension: s +Application: Hangup +AppData: + + +10:00:28 + +Event: Cdr +Privilege: cdr,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: Local/10@from-queue-00000aa6;2 +ActionID: 9971 +Device: Local/10@from-queue +State: NOT_INUSE +AccountCode: +Source: 79992849942 +Destination: 10 +DestinationContext: ext-local +CallerID: "79992849942" <79992849942> +DestinationChannel: PJSIP/10-0000117f +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 09 +AnswerTime: 2024-08-24 09 +EndTime: 2024-08-24 10 +Duration: 93 +BillableSeconds: 85 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724482734.9943 +UserField: + + +10:01:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: __DIRECTION +Value: +Extension: 79217365096 +Application: Set +AppData: __DIRECTION= + + +10:01:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724482871.9947 +Linkedid: +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: NOW=1724482871 + + +10:01:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: __FROMEXTEN=unknown +Variable: __TIMESTR +Value: 20240824-100111 + + +10:01:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: su +Exten: s +Priority: 17 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,in,1 +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:01:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARGC) +Value: 3 + + +10:01:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 5 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: in +Application: Return +AppData: +Variable: ARGC +Value: + + +10:01:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: < +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 6 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: returnhere +Value: 1 +Extension: 79217365096 +Application: Gosub +AppData: app-blacklist-check,s,1() + + +10:01:11 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 9 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 79217365096 +Application: ExecIf +AppData: 1 ?Set(CALLERID(name)=79602011453) +Variable: GOSUB_RETVAL +Value: + + +10:01:11 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 79217365096 +Application: Answer +AppData: +Variable: __RINGINGSENT +Value: TRUE +Device: PJSIP/Megafon_3 +State: INUSE + + +10:01:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +10:01:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T10 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +10:01:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T10 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE44-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +10:01:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +10:01:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 2 +Application: AGI +AppData: agi + + +10:01:13 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +CommandId: 858453791 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +10:01:13 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +CommandId: 1508751411 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +10:01:13 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +CommandId: 448266468 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +10:01:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724482871.9947 +Linkedid: 17244 +CommandId: 1876777795 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +10:01:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: s +Application: +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: AMPUSER +Value: 79602011453 +Extension: s +Application: Set +AppData: AMPUSER=79602011453 + + +10:01:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +10:01:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +10:01:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 4 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +10:01:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 194 +Application: Set +AppData: __RVOL_MODE= +Variable: VQ_AINFO +Value: + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +10:01:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +10:01:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +10:01:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:01:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +10:01:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724482882 +Variable: QUEUEJOINTIME +Value: + + +10:01:22 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/12@from-queue-00000aa7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724482882.9948 +Linkedid: 1724482871.9947 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fro +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724482882.9948 +Linkedid: 1724482871.9947 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724482882.9948 +Linkedid: 1724482871.9947 +Variable: __REC_STATUS +Value: INITIALIZED + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: fr +Exten: 12 +Priority: 1 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1 +Linkedid: 1724482871.9947 +Variable: __FROM_DID +Value: 79217365096 + + +10:01:22 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000aa7;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724482882.9948 +LocalOneLinkedid: 1724482871.9947 +LocalTwoChannel: Local/12@from-queue-00000aa7;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79602011453 +LocalTwoCallerIDName: 79602011453 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 + + +10:01:22 + +Event: VarSet +Privilege: d +Channel: Local/13@from-queue-00000aa8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482882.9950 +Linkedid: 1724482871.9947 +DestChannel: Local/12@from-queue-00000aa7;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724482882.9948 +DestLinkedid: 1724482871.9947 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482882.9950 +Linkedid: 1724482871.9947 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482882.9950 +Linkedid: 1724482871.9947 +Variable: __DAY +Value: 24 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-q +Exten: 13 +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: __NODEST +Value: 194 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: __MOHCLASS +Value: + + +10:01:22 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000aa8;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724482882.9950 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9952 +Linkedid: 1724482871.9947 +DestChannel: Local/13@from-queue-00000aa8;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724482882.9950 +DestLinkedid: 1724482871.9947 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QC_CONFIRM +Value: 0 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9952 +Linkedid: 1724482871.9947 +Variable: __CALLEE_ACCOUNCODE +Value: + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9952 +Linkedid: 1724482871.9947 +Variable: __MONTH +Value: 08 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: __QCONTEXT +Value: 0 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: __RINGINGSENT +Value: TRUE + + +10:01:22 + +Event: LocalBridge +Privilege: call,al +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 2 +Uniqueid: 1724482882.99 +Linkedid: 1724482871.9947 +DestChannel: Local/10@from-queue-00000aa9;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724482882.9952 +DestLinkedid: 1724482871.9947 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 13 +Application: Set +AppData: __FROMQ=true +Variable: QAGENT +Value: 13 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG3 +Value: 0 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 172448287 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000aa8;2 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79602011453 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: QAGENT +Value: 12 +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724482882.9949 +Linkedid: 172 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +Variable: DB_RESULT +Value: 0 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: ARG2 +Value: 12 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +10:01:22 + +Event: Newexten +Privilege: dialplan, +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: AMPUSER +Value: 79602011453 +Extension: s +Application: Set +AppData: AMPUSER=79602011453 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: 10 +Application: Set +AppData: QAGENT=10 +Variable: QAGENT +Value: 10 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: DB_RESULT +Value: 0 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +10:01:22 + +Event: VarSet +Privilege: dialplan, +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: ARG2 +Value: 10 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPTH +Value: from + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: AMPUSER=79602011453 +Variable: MACRO_DEPTH +Value: 2 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79602011453 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 +Variable: MACRO_DEPTH +Value: 1 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FRO + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79602011453 and 13 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: LOCAL(ARGC) +Value: 3 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: MACRO_DEPTH +Value: 1 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79602011453) + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: recordcheck +Application: Return +AppData: CDR(recordingfile)=external-13-79602011453-20240824-100122-1724482882.9951.wav +Variable: MACRO_DEPTH +Value: 1 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: ARG2 +Value: HhTtrM(auto-b +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79602011453 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: RINGTIME_MS +Value: + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001181 +ChannelState: 0 +ChannelStateDesc: D +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482882.9954 +Linkedid: 1724482871.9947 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000aa8;2 +Extension: s +Application: Set +AppData: CDR(cnum)=79602011453 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001181 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482882.9954 +Linkedid: 1724482871.9947 +Variable: __PICKUPMARK +Value: 13 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001181 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482882.9954 +Linkedid: 1724482871.9947 +Variable: _ +Value: 194 + + +10:01:22 + +Event: VarSet +Privilege: call,all +Channel: PJSIP/13-00001181 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724482882.9954 +Linkedid: 1724482871.9947 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001181 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724482882.9954 +Linkedid: 172 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: 0 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724482882.9948 +Linkedid: 1724482871.9947 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 3 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724482882 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: su +Exten: exten +Priority: 3 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 7960201145 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79602011453) +Variable: MACRO_DEPTH +Value: 1 + + +10:01:22 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-12-79602011453-20240824-100122-1724482882.9949.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79602011453-20240824-100122-1724482882.9949.wav,abi(), + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: 194 +Priority: 53 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79602011453-20240824-100122-1724482882.9949.wav +DestChannel: Local/13@from-queue-00000aa8;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602011453 +DestConnectedLineName: 79602011453 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482882.9950 +DestLinkedid: 1724482871.9947 +DialString: 13/sip +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +10:01:22 + +Event: Newexten +Privilege: di +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=2) + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.994 +Variable: THISDIAL +Value: PJSIP/12 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 + + +10:01:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 172448288 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +10:01:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 38 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: DIALEDTIME +Value: + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1 +Linkedid: 1724482871.9947 +Variable: ARG1 +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 6 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724482882 + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-100122 + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: DB_RESULT +Value: yes + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: 0?Return() + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79602011453) + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79602011453-20240824-100122-1724482882.9953.wav,abi(), + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7960201 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724482882.9953 +Linkedid: 17 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 +Variable: THISDIAL +Value: PJSIP/10 + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_ +Value: HhTtrM(auto-blkvm) + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +10:01:23 + +Event: VarSet +Privilege: dia +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_PRI +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482882.9955 +Linkedid: 1724482871.9947 +Variable: __REC_STATUS +Value: RECORDING + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001182 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482882.9955 +Linkedid: 1724482871.9947 +Variable: __PICKUPMARK +Value: 12 + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001182 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482882.9955 +Linkedid: 1724482871.9947 +Variable: __NODEST +Value: 194 + + +10:01:23 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-00001182 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 7960201145 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724482882.9955 +Linkedid: 1724482871.9947 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001182 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724482882.9955 +Linkedid: 1724482871.9947 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001183 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Extension: s +Application: Return +AppData: +Variable: __RECORD_ID +Value: Local/10@from-queue-00000aa9;2 + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001183 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Variable: __PICKUPMARK +Value: 10 + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001183 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001180 + + +10:01:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001183 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Реги +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Variable: __DIRECTION +Value: +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +10:01:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000118 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: + + +10:01:23 + +Event: DialBegin +Privilege: call,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/12-00001182 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602011453 +DestConnectedLineName: 79602011453 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482882.9952 +DestLinkedid: 1724482871.9947 +DialString: 10/sip +Device: Local/10@from-queue +State: INUSE +DialStatus: RINGING + + +10:01:23 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +DestChannel: Local/12@from-queue-00000aa7;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602011453 +DestConnectedLineName: 79602011453 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482882.9948 +DestLinkedid: 1724482871.9947 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE + + +10:01:25 + +Event: DialState +Privilege: call,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/13 +State: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 3356 +DestChannel: PJSIP/13-00001181 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602011453 +DestConnectedLineName: 79602011453 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724482882.9954 +DestLinkedid: 1724482871.9947 +DialStatus: RINGING + + +10:01:25 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 3746 +DestChannel: Local/10@from-queue-00000aa9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602011453 +DestConnectedLineName: 79602011453 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482882.9952 +DestLinkedid: 1724482871.994 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 292 +LastCall: 1724482828 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:01:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001182 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724482882.9955 +Linkedid: 1724482871.9947 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +10:01:26 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/12 +State: RINGING +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 53 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: RINGTIME_MS +Value: 4331 +DestChannel: Local/12@from-queue-00000aa7;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602011453 +DestConnectedLineName: 79602011453 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482882.9948 +DestLinkedid: 1724482871.9947 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:01:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001183 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse + + +10:01:28 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 292 +LastCall: 1724482828 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-00001183 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +10:01:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001183 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +10:01:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001183 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001180)= + + +10:01:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001183 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +10:01:28 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724482882.9952 +Linkedid: 1724482871.9947 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-00001183 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602011453 +DestConnectedLineName: 79602011453 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724482882.9956 +DestLinkedid: 1724482871.9947 +DialStatus: ANSWER +BridgeUniqueid: 6ccd0cad-94b1-44b1-a86f-d7228f56f58a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE + + +10:01:28 + +Event: HangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +DestChannel: Local/12@from-queue-00000aa7;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602011453 +DestConnectedLineName: 79602011453 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482882.9948 +DestLinkedid: 1724482871.9947 +DialStatus: CANCEL + + +10:01:28 + +Event: AgentConnect +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Р +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000aa8;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602011453 +DestConnectedLineName: 79602011453 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724482882.9950 +DestLinkedid: 1724482871.9947 +DialStatus: CANCEL +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 + + +10:01:28 + +Event: DialEnd +Privilege: call, +BridgeUniqueid: 6ccd0cad-94b1-44b1-a86f-d7228f56f58a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: NOT_INUSE +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 0dcb722d-c385-4a15-9ad8-48e16cf1b24e + + +10:01:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_PRIORITY +Value: 3 + + +10:01:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +10:01:28 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +10:01:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_PRIORITY +Value: 3 + + +10:01:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7960201145 +CallerIDName: 79602011453 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +10:01:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: MACRO_PRIORITY +Value: 1 + + +10:01:28 + +Event: BridgeEnter +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: 45633c3c-5832-4049-9d1d-e5e59f94ff84 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +10:01:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aa7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724482882.9949 +Linkedid: 1724482871.9947 +Variable: MACRO_CONTEXT +Value: +Source: 79602011453 +Destination: 12 +DestinationContext: ext-local +CallerID: "79602011453" <79602011453> +DestinationChannel: PJSIP/12-00001182 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724482882.9949 +UserField: +Extension: s +Application: Hangup +AppData: + + +10:01:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aa8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 9976 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_EXTEN + + +10:01:28 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724482882.9951 +Linkedid: 1724482871.9947 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +Source: 79602011453 +Destination: 13 +DestinationContext: ext-local +CallerID: "79602011453" <79602011453> +DestinationChannel: PJSIP/13-00001181 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724482882.9951 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9977 + + +10:02:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.011750;avgrxjitter=000.000224;stdevrxjitter=000.000667;mintxjitter=000.000750;maxtxjitter=6623.682500;avgtxjitter=413.981211;stdevtxjitter=1603.337978; + + +10:02:35 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724482882.9952 +Linkedid: 1724482871.9947 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000667; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=081.259787; stdevtxmes=015.817215; + + +10:02:35 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: MACRO_CONTEXT +Value: ext-queues +BridgeUniqueid: 45633c3c-5832-4049-9d1d-e5e59f94ff84 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:02:35 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000aa9;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724482882.9952 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Response: Success +Ping: Pong +Timestamp: 1724482955.351171 +BridgeUniqueid: 45633c3c-5832-4049-9d1d-e5e59f94ff84 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing + + +10:02:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Регистрату +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: DIALSTATUS +Value: ANSWER +BridgeUniqueid: 6ccd0cad-94b1-44b1-a86f-d7228f56f58a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:02:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: ARG2 +Value: + + +10:02:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:02:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: MACRO_DEPTH +Value: 1 +Device: Local/10@from-queue +State: NOT_INUSE +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +TalkTime: 67 +Reason: caller +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +10:02:35 + +Event: VarSet +Privilege: dia +Channel: Local/10@from-queue-00000aa9;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724482882.9953 +Linkedid: 1724482871.9947 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: + + +10:02:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001180 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602011453 +CallerIDName: 79602011453 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724482871.9947 +Linkedid: 1724482871.9947 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=0 +Source: 79602011453 +Destination: 10 +DestinationContext: ext-local +CallerID: "79602011453" <79602011453> +DestinationChannel: PJSIP/10-00001183 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 73 +BillableSeconds: 67 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724482882.9953 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE + + +10:02:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001183 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Variable: RTPAUDIOQOS +Value: ssrc=1530584902;themssrc=3920501270;lp=0;rxjitter=0.000000;rxcount=3339;txjitter=0.001125;txcount=3360;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9980 +Source: 79602011453 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79602011453" <79602011453> +DestinationChannel: Local/13@from-queue-00000aa8;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 5 +BillableSeconds: 5 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724482871.9947 +UserField: +BridgeUniqueid: 6ccd0cad-94b1-44b1-a86f-d7228f56f58a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:02:35 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10-00001183 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602011453 +ConnectedLineName: 79602011453 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724482882.9956 +Linkedid: 1724482871.9947 +Variable: RTPAUDIOQOSMES +Value: 1 +Source: 79602011453 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79602011453" <79602011453> +DestinationChannel: Local/10@from-queue-00000aa9;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 73 +BillableSeconds: 73 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724482871.9947 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 293 +LastCall: 1724482955 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory + + +10:08:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +10:08:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:08:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-100855 +Variable: __YEAR +Value: 2024 + + +10:08:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:08:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +10:08:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:08:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +10:08:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +10:08:55 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +10:08:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 15 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: GotoIf +AppData: 1?post-reverse-charge + + +10:08:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +10:08:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 22 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(num-pres)=allowed_not_screened + + +10:08:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 2 +Application: AGI +AppData: agi + + +10:08:57 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +CommandId: 247903128 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +10:08:57 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +CommandId: 1588939129 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +10:08:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335. +Extension: 194 +Application: Macro +AppData: user-callerid, +Variable: DB_RESULT +Value: + + +10:08:57 + +Event: VarSet +Privilege: dialpl +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: CHANCONTEXT +Value: +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +10:08:57 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001184 +Variable: MACRO_DEPTH +Value: 1 + + +10:08:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=Megafon_3 + + +10:08:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724483335.9957 +Linkedid: 17244 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?report + + +10:08:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME= +Variable: MACRO_DEPTH +Value: 1 + + +10:08:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 17 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +10:08:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?continue + + +10:08:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CDR(cnum)=79524846673 + + +10:08:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: MACRO_EXTEN +Value: 194 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset + + +10:08:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: SHARED(BLKVM) +Value: TRUE +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001184)=TRUE + + +10:08:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 5 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 194 +Application: ExecIf +AppData: 1?Set(_DIAL_OPTIONS=HhTtrM(aut +Variable: MACRO_PRIORITY +Value: + + +10:08:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 10 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: VQ_CIDPP +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Macro(prepend-cid,) + + +10:08:57 + +Event: VarSet +Privilege: dialpla +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 16 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: QJOINMSG +Value: custom/Privet_23_08 +Extension: 194 +Application: Set +AppData: VQ_JOINMSG= + + +10:08:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 21 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 194 +Application: Set +AppData: QOPTIONS=tR +Variable: VQ_RETRY +Value: + + +10:08:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 26 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 194 +Application: Set +AppData: VQ_AGI= +Variable: QAGI +Value: + + +10:08:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queue +Exten: 194 +Priority: 31 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: VQ_POSITION +Value: + + +10:08:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +10:08:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: recordcheck +Application: Goto +AppData: dontcare +Variable: LOCAL(ARGC) +Value: 3 + + +10:08:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 40 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: VQ_CONFIRMMSG= + + +10:08:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 194 +Application: QueueLog +AppData: 194,1724483335.9957,NONE,DID,79217365096 + + +10:09:06 + +Event: Newexten +Privilege: dia +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +10:09:06 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: QUEUEJOINTIME +Value: 1724483346 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING +Queue: + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724483346.9958 +Linkedid: 1724483335.9957 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724483346.9958 +Linkedid: 1724483335.9957 +Variable: __RINGINGSENT +Value: TRUE + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724483346.9958 +Linkedid: 1724483335.9957 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: __FROMQUEUEEXTEN +Value: 79524846673 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: __YEAR +Value: 2024 + + +10:09:06 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000aaa;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724483346.9958 +LocalOneLinkedid: 1724483335.9957 +LocalTwoChannel: Local/12@from-queue-00000aaa;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524846673 +LocalTwoCallerIDName: 79524846673 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724483346.9959 +LocalTwoLinkedid: 1724483335.9957 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000aaa;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79524846673 +DestConnectedLineName: 79524846673 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483346.9958 +DestLinkedid: 1724483335.9957 +Queue: 194 +Interface: Local/12@from-qu + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724483346.9960 +Linkedid: 1724483335.9957 +DestChannel: Local/12@from-queue-00000aaa;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724483346.9958 +DestLinkedid: 1724483335.9957 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 792173 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724483346.9960 +Linkedid: 1724483335.9957 +Variable: __REVERSAL_REJECT +Value: FALSE + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724483346.9960 +Linkedid: 1724483335.9957 +Variable: __DIRECTION +Value: + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001184 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: __TIMESTR +Value: 20240824-100855 + + +10:09:06 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000aab;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724483346.9960 +LocalOneLinkedid: 1724483335.9957 +LocalTwoChannel: Local/13@from-queue-00000aab;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524846673 +LocalTwoCallerIDName: 79524846673 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724483346.9961 +LocalTwoLinkedid: 1724483335.9957 +LocalOptimization: No +DestChannel: + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;1 +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724483346.9962 +Linkedid: 1724483335.9957 +DestChannel: Local/13@from-queue-00000aab;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724483346.9960 +DestLinkedid: 1724483335.9957 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 7921 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724483346.9962 +Linkedid: 1724483335.9957 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724483346.9962 +Linkedid: 1724483335.9957 +Variable: __REC_STATUS +Value: INITIALIZED + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724483346.9963 +Linkedid: 1724483 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: __MON_FMT +Value: wav + + +10:09:06 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000aac;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724483346.9962 +LocalOneLinkedid: 1724483335.9957 +LocalTwoChannel: Local/10@from-queue-00000aac;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524846673 +LocalTwoCallerIDName: 79524846673 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724483346.9963 +LocalTwoLinkedid: 1724483335.9957 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 4 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +DestChannel: Local/10@from-queue-00000aac;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724483346.9962 +DestLinkedid: 1724483335.9957 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 13 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: 13 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) +Variable: __RINGTIMER +Value: 60 + + +10:09:06 + +Event: Newexte +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO +Value: 1724483346.9961 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724483346.9961 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000aab;2 +Variable: MACRO_DEPTH +Value: 2 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: HOTDESCKCHAN +Value: 13@from-queue-00000aab;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000aab;2 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: s +Application: ExecIf +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-use +Exten: s +Priority: 30 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79524846673 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 2 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: QAGENT +Value: 10 +Extension: 10 +Application: Set +AppData: __FROMQ=true + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: 10 +Application: S +AppData: 1?ext-local,10,1 +Variable: DB_RESULT +Value: 0 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: ARG3 +Value: 0 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724483346.9963 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: AMPUSER +Value: 79524846673 +Extension: s +Application: Set +AppData: AMPUSER=79524846673 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: QAGENT +Value: 12 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 4 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: 12 +Application: GotoIf +AppData: 1?194,1 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724483 +Linkedid: 1724483335.9957 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG2 +Value: 12 + + +10:09:06 + +Event: Newexten +Privilege: d +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724483346.9959 +Variable: MACRO_DEPTH +Value: 2 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: LOCAL(ARG1) +Value: exten + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 795 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79524846673-20240824-100906-1724483346.9961 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000aaa;2 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79524846673 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: ext-local + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: __PICKUPMARK +Value: 12 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CDR(cnum)=79524846673 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: su +Exten: s +Priority: 8 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79524846673 + + +10:09:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79524846673 and 12 + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +10:09:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79524846673-20240824-100906-1724483346.9959 +Variable: MACRO_DEPTH +Value: 1 + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: from-queue +Exten: s +Priority: 54 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 2 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +10:09:07 + +Event: VarSet +Privilege: dialplan, +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exte +Priority: 2 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: CALLTYPE +Value: external + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79524846673-20240824-100906-1724483346.9963 +Variable: MACRO_DEPTH +Value: 1 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000aac;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000aac;2 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG2 +Value: + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 7952484667 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 13 +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: +Linkedid: 1724483335.9957 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 7952484 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 7 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +10:09:07 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 52 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001185 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483346.9964 +Linkedid: 1724483335.9957 +Variable: PROGRESSTIME_MS +Value: + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001185 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 17244833 +Linkedid: 1724483335.9957 +Variable: __FROMEXTEN +Value: 79524846673 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001185 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483346.9964 +Linkedid: 1724483335.9957 +Variable: __QC_CONFIRM +Value: 0 + + +10:09:07 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-queue-00000aab;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 79217365096 +CallerIDName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-00001185 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524846673 +DestConnectedLineName: 79524846673 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724483346.9964 +DestLinkedid: 1724483335.9957 +DialString: 13/sip + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/13@from-queue-00000aab;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524846673 +DestConnectedLineName: 79524846673 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483346.9960 +DestLinkedid: 1724483335.9957 +DialStatus: RINGING +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 795 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:09:07 + +Event: Newexten +Privilege: dialplan,a +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: ITER +Value: 1 +Extension: dstring +Application: Set +AppData: ITER=1 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: VarSet +Privilege: dialpl +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_EXTEN +Value: s + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: DB_RESULT +Value: +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: dstring +Priority: 7 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: THISDIAL +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +10:09:07 + +Event: VarSet +Privilege: dialplan +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +10:09:07 + +Event: VarSet +Privilege: dial +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +10:09:07 + +Event: Newexten +Privilege: d +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: s +Priority: 50 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: DIALEDTIME +Value: + + +10:09:07 + +Event: Newexte +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: RINGTIME +Value: + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001186 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483346.9965 +Linkedid: 1724483335.9957 +Variable: __CALLFILENAME +Value: external-12-79524846673-2024 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001186 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483346.9965 +Linkedid: 1724483335.9957 +Variable: __TTL +Value: 63 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001186 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483346.9965 +Linkedid: 1724483335.9957 +Variable: __FROMQUEUEEXTEN +Value: 79524846673 + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001186 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724483335.9957 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001186 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724483346.9965 +Linkedid: 1724483335.9957 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001187 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Variable: __CALLFILENAME +Value: external-10-79524846673-20240824-100906-1724483346.9963 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001187 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Variable: __CALLEE_ACCOUNCODE +Value: + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001187 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Ре +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:09:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001187 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/10-00001187 + + +10:09:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001187 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Р +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +10:09:07 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724483346.9962 +Linkedid: 1724483335.9957 +DestChannel: PJSIP/10-00001187 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524846673 +DestConnectedLineName: 79524846673 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724483346.9966 +DestLinkedid: 1724483335.9957 +DialString: 10/sip +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE + + +10:09:07 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +DestChannel: Local/10@from-queue-00000aac;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524846673 +DestConnectedLineName: 79524846673 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483346.9962 +DestLinkedid: 1724483335.9957 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE + + +10:09:09 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3109 +Device: PJSIP/13 +State: RINGING +DestChannel: Local/13@from-queue-00000aab;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524846673 +DestConnectedLineName: 79524846673 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483346.9960 +DestLinkedid: 1724483335.9957 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:09:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3766 + + +10:09:10 + +Event: DialState +Privilege: call,all +Device: PJSIP/12 +State: RINGING +Exten: 194 +Context: ext-queues +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +DestChannel: Local/12@from-queue-00000aaa;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524846673 +DestConnectedLineName: 79524846673 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483346.9958 +DestLinkedid: 1724483335.9957 +DialStatus: RINGING + + +10:09:10 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 4389 +DestChannel: PJSIP/10-00001187 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524846673 +DestConnectedLineName: 79524846673 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724483346.9966 +DestLinkedid: 1724483335.9957 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 293 +LastCall: 1724482955 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:09:12 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: DIALEDPEERNUMBER +Value: 10/sip +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse + + +10:09:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001187 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 1 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: +Device: PJSIP/10 +State: INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 293 +LastCall: 1724482955 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: ExecIf +AppData: 1?Set(CDR(recordingfile)=external-10-79524846673-20240824-100906-1724483346.9963.wav) + + +10:09:12 + +Event: +Privilege: dialplan,all +Channel: PJSIP/10-00001187 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +10:09:12 + +Event: +Privilege: dialplan,all +Channel: PJSIP/10-00001187 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +10:09:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10- +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +10:09:12 + +Event: VarSet +Privilege: d +Channel: PJSIP/10-00001187 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +10:09:13 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +DestChannel: Local/12@from-queue-00000aaa;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524846673 +DestConnectedLineName: 79524846673 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483346.9962 +DestLinkedid: 1724483335.9957 +DialStatus: ANSWER +BridgeUniqueid: 62a2fc35-0359-485e-9835-4772ee828596 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:09:13 + +Event: DialEnd +Privilege: call,all +Channel: Local/12@from-que +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +DestChannel: Local/13@from-queue-00000aab;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524846673 +DestConnectedLineName: 79524846673 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483346.9960 +DestLinkedid: 1724483335.9957 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:09:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9959 +Linkedid: 1724483335.9957 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: ARG1 +Value: novm +Source: 79524846673 +Destination: 12 +DestinationContext: ext-local +CallerID: "79524846673" <79524846673> +DestinationChannel: PJSIP/12-00001186 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724483346.9959 +UserField: + + +10:09:13 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +DestChannel: PJSIP/13-00001185 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 7952 + + +10:09:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_PRIORI +Value: ext-local +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE + + +10:09:13 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: Local/13@from-queue-00000aab;2 +ActionID: 9982 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 13 +ConnectedLineName: Регистр +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_EXTEN +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 26 +Cause-txt: Answered elsewhere + + +10:09:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 13 +ConnectedLineName: Регистрату +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:09:13 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000aaa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7952484 +CallerIDName: 79524846673 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: MACRO_PRIORITY +Value: + + +10:09:13 + +Event: Cdr +Privilege: cdr,all +Channel: Local/13@from-queue-00000aab;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724483346.9961 +Linkedid: 1724483335.9957 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: 0b78fe66-3753-47a2-a42d-c85b45111e3c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: PJSIP/12 +State: NOT_INUSE +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Source: 79524846673 +Destination: 13 +DestinationContext: ext-local +CallerID: "79524846673" <79524846673> +DestinationChannel: PJSIP/13-00001185 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 6 + + +10:09:13 + +Event: VarSet +Privilege: dialplan,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: Local/10@from-queue-00000aac;1 +ActionID: 9987 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: 0b78fe66-3753-47a2-a42d-c85b45111e3c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524846673 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 + + +10:09:13 + +Event: RTCPReceived +Privilege: reporting,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: BRIDGEPVTCALLID +Value: ce297719-16b9-4d97-a025-5f7cd9f17c95 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 62a2fc35-0359-485e-9835-4772ee828596 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +10:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: RTPAUDIOQOSLOSSBRIDGED +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +10:10:48 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-00001187 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 62a2fc35-0359-485e-9835-4772ee828596 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:10:48 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001187 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724483346.9966 +Linkedid: 1724483335.9957 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000129; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 293 +LastCall: 1724482955 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:10:48 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 62a2fc35-0359-485e-9835-4772ee828596 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: ARG1 +Value: novm + + +10:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: ARG4 +Value: + + +10:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795248466 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aac;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724483346.9963 +Linkedid: 1724483335.9957 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: + + +10:10:48 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@from-queue-00000aac;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524846673 +ConnectedLineName: 79524846673 +Language: ru +AccountCode: +Context: +Exten: 194 +Priority: 53 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: BRIDGEPEER +Value: +Cause: 16 +Source: 79524846673 +Destination: 10 +DestinationContext: ext-local +CallerID: "79524846673" <79524846673> +DestinationChannel: PJSIP/10-00001187 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 101 +BillableSeconds: 95 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724483346.9963 +UserField: +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9989 +BridgeUniqueid: 0b78fe66-3753-47a2-a42d-c85b45111e3c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: 0b78fe66-3753-47a2-a42d-c85b45111e3c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +10:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Device: Local/10@from-queue +State: NOT_INUSE +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +TalkTime: 96 +Reason: agent +BridgeUniqueid: 0b78fe66-3753-47a2-a42d-c85b45111e3c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9990 + + +10:10:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000560; mintxmes=085.367289; maxtxmes=085.367289; + + +10:10:48 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001184 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524846673 +CallerIDName: 79524846673 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724483335.9957 +Linkedid: 1724483335.9957 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Source: 79524846673 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79524846673" <79524846673> +DestinationChannel: Local/10@from-queue-00000aac;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 101 +BillableSeconds: 101 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724483335.9957 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 9991 + + +10:14:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +10:14:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:14:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-101431 +Variable: __YEAR +Value: 2024 + + +10:14:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:14:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +10:14:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:14:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +10:14:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +10:14:31 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +10:14:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +10:14:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +10:14:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: 2 +Application: AGI +AppData: agi + + +10:14:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +CommandId: 1017230766 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +10:14:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +CommandId: 792518273 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +10:14:33 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +CommandId: 1893752238 +Command: VERBOSE "Goto +ResultCode: 200 +Result: Success + + +10:14:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 15 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +CommandId: 623792307 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: DEVICE_STATE(Custom + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724483671.9967 +Variable: TOUCH_MONITOR +Value: 1724483671.99 + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-00001188 + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724483671.9967 +Linkedid: 17244836 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001188 + + +10:14:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724483671.9967 +Linkedid: 17244 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +10:14:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724483671 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Macro Depth is 1 + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: +Priority: 32 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: __TTL=64 +Variable: __TTL +Value: 64 + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: CDR(cnam)=79517295595 +Variable: MACRO_DEPTH +Value: 1 + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 3 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: 194 +Application: Set +AppData: __FROMQUEUEEXTEN=79517295595 +Variable: MACRO_PRIORITY +Value: + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/Megafon_3-00001188) +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001188 + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: s +Application: MacroExit +AppData: +Variable: ARG1 +Value: + + +10:14:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 8 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: QCIDPP +Value: +Extension: 194 +Application: Set +AppData: QCIDPP= + + +10:14:33 + +Event: Newexten +Privilege: dialplan +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 14 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: __RVOL_MODE +Value: dontcare +Extension: 194 +Application: ExecIf +AppData: 0?Set(__ALERT_INFO=) + + +10:14:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 19 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: QRETRY +Value: +Extension: 194 +Application: Set +AppData: QRETRY= + + +10:14:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 795172 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 24 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: VQ_GOSUB +Value: +Extension: 194 +Application: Set +AppData: VQ_GOSUB= + + +10:14:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-q +Exten: 194 +Priority: 29 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: QPOSITION +Value: +Extension: 194 +Application: Set +AppData: QPOSITION= + + +10:14:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 7951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: LOCAL(ARG3) +Value: 194 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +10:14:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: __SIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +10:14:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +10:14:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 43 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: 194 +Application: Set +AppData: QAANNOUNCE= + + +10:14:41 + +Event: VarSet +Privilege: dial +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 49 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: 194 +Application: Set +AppData: QMAXWAIT=600 +Variable: VQ_MOH +Value: + + +10:14:41 + +Event: +Privilege: call,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Variable: QUEUEJOINTIME +Value: 1724483681 +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +10:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724483681.9968 +Linkedid: 1724483671.9967 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +10:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724483681.9968 +Linkedid: 1724483671.9967 +Variable: __MOHCLASS +Value: + + +10:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +10:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: __TTL +Value: 64 + + +10:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: __MONTH +Value: 08 + + +10:14:41 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000aad;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724483681.9968 +LocalOneLinkedid: 1724483671.9967 +LocalTwoChannel: Local/12@from-queue-00000aad;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79517295595 +LocalTwoCallerIDName: 79517295595 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724483681.9969 +LocalTwoLinkedid: 1724483671.9967 +LocalOptimization: No +DestChannel: +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483681.9968 +DestLinkedid: 1724483671.9967 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 + + +10:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 7921736 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724483681.9970 +Linkedid: 1724483671.9967 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +10:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724483681.9970 +Linkedid: 1724483671.9967 +Variable: __RINGINGSENT +Value: TRUE + + +10:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724483681.9970 +Linkedid: 1724483671.9967 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n + + +10:14:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724483681.9971 +Linkedid: 17 +Variable: __FROMQUEUEEXTEN +Value: 79517295595 + + +10:14:42 + +Event: VarSet +Privilege: d +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: __YEAR +Value: 2024 + + +10:14:42 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000aae;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724483681.9970 +LocalOneLinkedid: 1724483671.9967 +LocalTwoChannel: Local/13@from-queue-00000aae;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79517295595 +LocalTwoCallerIDName: 79517295595 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724483681.9971 +LocalTwoLinkedid: 1724483671.9967 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000aae;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483681.9970 +DestLinkedid: 1724483671.9967 +Queue: 194 +Interface: Local/13@from-queue/n + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724483681.9972 +Linkedid: 1724483671.9967 +DestChannel: Local/13@from-queue-00000aae;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724483681.9970 +DestLinkedid: 1724483671.9967 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724483681.9972 +Linkedid: 1724483671.9967 +Variable: __REVERSAL_REJECT +Value: FALSE + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: fr +Exten: 10 +Priority: 1 +Uniqueid: 1724483681.9972 +Linkedid: 1724483671.9967 +Variable: __DIRECTION +Value: + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724483681.9973 +Linkedid: 172 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001188 + + +10:14:42 + +Event: VarS +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: __TIMESTR +Value: 20240824-101431 + + +10:14:42 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000aaf;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724483681.9972 +LocalOneLinkedid: 1724483671.9967 +LocalTwoChannel: Local/10@from-queue-00000aaf;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79517295595 +LocalTwoCallerIDName: 79517295595 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724483681.9973 +LocalTwoLinkedid: 1724483671.9967 +LocalOptimization: No +DestChannel: Local/10@ + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +DestChannel: Local/10@from-queue-00000aaf;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724483681.9972 +DestLinkedid: 1724483671.9967 +DialString: Local/10@from-queue/n +Extension: 194 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: __RINGTIMER +Value: 60 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724483681.9973 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000aaf;2 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_ +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7951729 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79517295595 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724483681.9972 +Linkedid: 1724483671.9967 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724483681.9973 +Linkedid: 17 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724483681.9973 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79517295595-20240824-101441-1724483681.9973.wav,abi(), + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: DEXTEN +Value: 10 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 5 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: DB_RESULT +Value: PJSIP/10 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Extension: ctset +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 2 +Uniqueid: +Linkedid: 1724483671.9967 +Extension: 13 +Application: Set +AppData: __FROMQ=true +Variable: QAGENT +Value: 13 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 4 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: 12 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 2 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: __RINGTIMER +Value: 60 +Extension: 13 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: ARG5 +Value: 0 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: s +Application: Macro +AppData: user-callerid, +Variable: ARG2 +Value: 12 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: TOUCH_MONITOR +Value: 1724483681.9969 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724483681.9969 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000aad;2 +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: S +AppData: CALLERID(number)=79517295595 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000aad;2 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: AMPUSER=79517295595 +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: HOTDESKEXTEN=13@from + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALL + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79517295595 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: CDR(cnum)=79517295595 +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: Newexten +Privilege: dialplan +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724483681.9969 +Linkedid: 17244836 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79517295595 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79517295595 and 12 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-rec +Exten: exten +Priority: 11 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +10:14:42 + +Event: VarSet +Privilege: dialpla +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79517295595-20240824-101441-1724483681.9969 +Variable: MACRO_DEPTH +Value: 1 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: rec +Priority: 25 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DB_RESULT +Value: 12 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: ds +Application: GotoIf +AppData: 0?docheck + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: GOSUB_RETVAL +Value: +Extension: dstring +Application: Return +AppData: + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79517295595 +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Extension: s +Application: Dial +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: RINGTIME_MS +Value: + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79517295595 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: +Value: + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: ARG1 +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: __EXTTOCALL +Value: 13 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724483681.9971 +Linkedid: 17244836 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: LOCAL(ARG2) +Value: 13 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: NOW +Value: 1724483681 +Extension: s +Application: Set +AppData: NOW=1724483681 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARG1) +Value: yes + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: RECFROMEXTEN +Value: 79517295595 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79517295595) + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79517295595-20240824-101441-1724483681.9971.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-13-79517295595-20240824-101441-1724483681.9971.wav + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: MACRO_DEPTH +Value: RECORDING + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001189 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483681.9974 +Linkedid: +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79517295595-20240824-101441-1724483681.9971.wav +Variable: __CALLFILENAME +Value: external-10-79517295595-20240824-101441-1724483681.9973 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001189 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483681.9974 +Linkedid: 1724483671.9967 +Variable: __CALLEE_ACCOUNCODE +Value: + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001189 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483681.9974 +Linkedid: 1724483671.9967 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000118a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483681.9975 +Linkedid: 1724483671.9967 +Variable: DIALEDPEERNUMBER +Value: 12/sip +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000118a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483681.9975 +Linkedid: 1724483671.9967 +Variable: __TIMESTR +Value: 20240824-101441 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000118a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724483681.9975 +Linkedid: 1724483671.9967 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001189 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724483681.9974 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: TECH=PJSIP +Variable: LOCAL(ARGC) +Value: 0 + + +10:14:42 + +Event: DialBegin +Privilege: call,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724483681.9974 +Linkedid: 1724483671.9967 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +DestChannel: PJSIP/10-00001189 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724483681.9974 +DestLinkedid: 1724483671.9967 +DialString: 10/sip +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DB_RESULT +Value: 13 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 17244 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +10:14:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +10:14:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: GOSUB_RETVAL +Value: +Extension: dstring +Application: Return +AppData: + + +10:14:43 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79517295595 +Variable: MACRO_DEPTH +Value: 2 + + +10:14:43 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Tran + + +10:14:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:14:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +10:14:43 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE +DestChannel: Local/10@from-queue-00000aaf;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483681.9972 +DestLinkedid: 1724483671.9967 +DialStatus: RINGING + + +10:14:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +DestChannel: Local/12@from-queue-00000aad;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483681.9968 +DestLinkedid: 1724483671.9967 +DialStatus: RINGING + + +10:14:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +10:14:43 + +Event: VarSet +Privilege: +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: ANSWEREDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +10:14:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000118b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483681.9976 +Linkedid: 172448 +Variable: __KEEPCID +Value: TRUE +Device: Local/10@from-queue +State: INUSE + + +10:14:43 + +Event: Va +Privilege: dialplan,all +Channel: PJSIP/13-0000118b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483681.9976 +Linkedid: 1724483671.9967 +Variable: __MONTH +Value: 08 + + +10:14:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000118b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483681.9976 +Linkedid: 1724483671.9967 +Variable: __RVOL_MODE +Value: dontcare + + +10:14:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000118b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724483681.9976 +Linkedid: 1724483671.9967 +Variable: __FROM_DID +Value: 79217365096 + + +10:14:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000118b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724483681.9976 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +10:14:43 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-0000118b +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724483681.9976 +DestLinkedid: 1724483671.9967 +DialString: 13/sip +Device: Local/13@from-queue +State: INUSE + + +10:14:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000118a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724483681.9975 +Linkedid: 1724483671.9967 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +10:14:44 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: RINGTIME_MS +Value: 3026 +Device: PJSIP/12 +State: RINGING +DestChannel: Local/12@from-queue-00000aad;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483681.9968 +DestLinkedid: 1724483671.9967 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:14:45 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 3643 +DestChannel: PJSIP/10-00001189 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724483681.9974 +DestLinkedid: 1724483671.9967 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 294 +LastCall: 1724483448 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:14:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000118b +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724483681.9976 +Linkedid: 1724483671.9967 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +10:14:46 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: RINGTIME_MS +Value: 4313 +DestChannel: Local/13@from-queue-00000aae;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483681.9970 +DestLinkedid: 1724483671.9967 +DialStatus: RINGING +Device: PJSIP/13 +State: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:14:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001189 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724483681.9974 +Linkedid: 1724483 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/10 +State: INUSE + + +10:14:47 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 294 +LastCall: 1724483448 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-00001189 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724483681.9974 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +10:14:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001189 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724483681.9974 +Linkedid: 1724483671.9967 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +10:14:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001189 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724483681.9974 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001188)= + + +10:14:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001189 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724483681.9974 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +10:14:47 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/10-00001189 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724483681.9974 +Linkedid: 1724483671.9967 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-00001189 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724483681.9974 +DestLinkedid: 1724483671.9967 +DialStatus: ANSWER +BridgeUniqueid: 341cdc55-7c2b-4b41-a843-1fc20d47b739 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:14:47 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: 341cdc55-7c2b-4b41-a843-1fc20d47b739 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: BRIDGEPVTCALLID +Value: bf31f9d8-0331-4c52-bcf4-30403e9f1013 +Device: Local/10@from-queue +State: INUSE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000aaf;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483681.9972 +DestLinkedid: 1724483671.9967 +DialStatus: ANSWER + + +10:14:47 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724483681.9968 +Linkedid: 1724483671.9967 +DestChannel: Local/12@from-queue-00000aad;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483681.9968 +DestLinkedid: 1724483671.9967 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:14:47 + +Event: DialEnd +Privilege: call, +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Local/13@from-queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: Local/10@from-queue-00000aaf;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79517295595 +DestConnectedLineName: 79517295595 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724483681.9972 +DestLinkedid: 1724483671.9967 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +RingTime: 5 +BridgeUniqueid: b93bced1-7fd6-46f0-bfd0-55be8915020d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:14:47 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_PRIORITY +Value: 3 + + +10:14:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_PRIORITY +Value: 3 + + +10:14:47 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724483681.9975 +Linkedid: 1724483671.9967 +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere + + +10:14:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295 +CallerIDName: 79517295595 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere + + +10:14:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_CONTEXT +Value: + + +10:14:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +10:14:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aae;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724483681.9971 +Linkedid: 1724483671.9967 +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Source: 79517295595 +Destination: 13 +DestinationContext: ext-local +CallerID: "79517295595" <79517295595> +DestinationChannel: PJSIP/13-0000118b +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724483681.9971 +UserField: +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +10:14:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724483681.9972 +Linkedid: 1724483671.9967 +Variable: BRIDGEPEER +Value: PJSIP/Megafon_3-00001188 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: b93bced1-7fd6-46f0-bfd0-55be8915020d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +10:14:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aad;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Variable: MACRO_CONTEXT +Value: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 9993 +Extension: s +Application: Hangup +AppData: + + +10:14:47 + +Event: UserEvent +Privilege: user,all +AccountCode: +Source: 79517295595 +Destination: 12 +DestinationContext: ext-local +CallerID: "79517295595" <79517295595> +Channel: LOCAL/12@FROM-QUEUE +DestinationChannel: PJSIP/12-0000118a +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724483681.9969 +UserField: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724483681.9969 +Linkedid: 1724483671.9967 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 9997 + + +10:15:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +10:15:16 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 17 +Linkedid: 1724483671.9967 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: b93bced1-7fd6-46f0-bfd0-55be8915020d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:15:16 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 341cdc55-7c2b-4b41-a843-1fc20d47b739 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Loca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 9998 +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Variable: BRIDGEPEER + + +10:15:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_EXTEN +Value: 10 + + +10:15:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Variable: MACRO_CONTEXT +Value: + + +10:15:17 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +10:15:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001189 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517295595 +ConnectedLineName: 79517295595 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724483681.9974 +Linkedid: 1724483671.9967 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +BridgeUniqueid: 341cdc55-7c2b-4b41-a843-1fc20d47b739 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: NOT_INUSE + + +10:15:17 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aaf;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724483681.9973 +Linkedid: 1724483671.9967 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 295 +LastCall: 1724483716 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: MACRO_EXTEN +Value: + + +10:15:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: MACRO_PRIORITY +Value: 1 +Source: 79517295595 +Destination: 10 +DestinationContext: ext-local +CallerID: "79517295595" <79517295595> +DestinationChannel: PJSIP/10-00001189 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 35 +BillableSeconds: 29 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724483681.9973 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Extension: h +Application: Macro +AppData: hangupcall, + + +10:15:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: +Device: Local/10@from-queue +State: NOT_INUSE + + +10:15:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001188 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Source: 79517295595 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79517295595" <79517295595> +DestinationChannel: Local/13@from-queue-00000aae;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 5 +BillableSeconds: 5 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724483671.9967 +UserField: + + +10:15:17 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517295595 +CallerIDName: 79517295595 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724483671.9967 +Linkedid: 1724483671.9967 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Source: 79517295595 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79517295595" <79517295595> +DestinationChannel: Local/10@from-queue-00000aaf;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 35 +BillableSeconds: 35 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724483671.9967 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10001 + + +10:20:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T10 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +10:20:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T10 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +10:23:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +10:23:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:23:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-102315 +Variable: __YEAR +Value: 2024 + + +10:23:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:23:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +10:23:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:23:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +10:23:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +10:23:16 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +10:23:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +10:23:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 20 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: __CALLINGNUMPRES_SV=allowed_not_screened + + +10:23:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: 2 +Application: AGI +AppData: agi + + +10:23:17 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +CommandId: 1732292096 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +10:23:17 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +CommandId: 883001684 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +10:23:17 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +CommandId: 1315040419 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +10:23:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724484195.9977 +Linkedid: 1724484 +CommandId: 1895083913 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +10:23:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +10:23:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: s +Application: Se +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +10:23:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: +Linkedid: 1724484195.9977 +Variable: AMPUSER +Value: 79082910679 +Extension: s +Application: Set +AppData: AMPUSER=79082910679 + + +10:23:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +10:23:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +10:23:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +10:23:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +10:23:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +10:23:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +10:23:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 4 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +10:23:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +10:23:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=do +Variable: VQ_AINFO +Value: + + +10:23:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +10:23:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +10:23:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +10:23:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +10:23:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +10:23:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:23:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +10:23:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +10:23:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: 194 +Application: QueueLog +AppData: 194,1724484195.9977,NONE,DID,79217365096 + + +10:23:26 + +Event: Newexten +Privilege: dia +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +10:23:26 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: QUEUEJOINTIME +Value: 1724484206 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING +Queue: + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484206.9978 +Linkedid: 1724484195.9977 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484206.9978 +Linkedid: 1724484195.9977 +Variable: __RINGINGSENT +Value: TRUE + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484206.9978 +Linkedid: 1724484195.9977 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: __FROMQUEUEEXTEN +Value: 79082910679 + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: __YEAR +Value: 2024 + + +10:23:26 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ab0;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484206.9978 +LocalOneLinkedid: 1724484195.9977 +LocalTwoChannel: Local/12@from-queue-00000ab0;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082910679 +LocalTwoCallerIDName: 79082910679 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724484206.9979 +LocalTwoLinkedid: 1724484195.9977 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ab0;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484206.9978 +DestLinkedid: 1724484195.9977 +Queue: 194 +Interface: Local/12@from-qu + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484206.9980 +Linkedid: 1724484195.9977 +DestChannel: Local/12@from-queue-00000ab0;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724484206.9978 +DestLinkedid: 1724484195.9977 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 792173 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484206.9980 +Linkedid: 1724484195.9977 +Variable: __REVERSAL_REJECT +Value: FALSE + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484206.9980 +Linkedid: 1724484195.9977 +Variable: __DIRECTION +Value: + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000118c + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: __TIMESTR +Value: 20240824-102315 + + +10:23:26 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000ab1;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484206.9980 +LocalOneLinkedid: 1724484195.9977 +LocalTwoChannel: Local/13@from-queue-00000ab1;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082910679 +LocalTwoCallerIDName: 79082910679 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724484206.9981 +LocalTwoLinkedid: 1724484195.9977 +LocalOptimization: No +DestChannel: + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;1 +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484206.9982 +Linkedid: 1724484195.9977 +DestChannel: Local/13@from-queue-00000ab1;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724484206.9980 +DestLinkedid: 1724484195.9977 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 7921 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484206.9982 +Linkedid: 1724484195.9977 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484206.9982 +Linkedid: 1724484195.9977 +Variable: __REC_STATUS +Value: INITIALIZED + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484206.9983 +Linkedid: 1724484 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: __MON_FMT +Value: wav + + +10:23:26 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000ab2;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484206.9982 +LocalOneLinkedid: 1724484195.9977 +LocalTwoChannel: Local/10@from-queue-00000ab2;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082910679 +LocalTwoCallerIDName: 79082910679 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724484206.9983 +LocalTwoLinkedid: 1724484195.9977 + + +10:23:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 4 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +DestChannel: Local/10@from-queue-00000ab2;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724484206.9982 +DestLinkedid: 1724484195.9977 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 10 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true + + +10:23:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: 10 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) +Variable: __RINGTIMER +Value: 60 + + +10:23:26 + +Event: Newexte +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO +Value: 1724484206.9983 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724484206.9983 + + +10:23:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000ab2;2 +Variable: MACRO_DEPTH +Value: 2 + + +10:23:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: HOTDESCKCHAN +Value: 10@from-queue-00000ab2;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000ab2;2 + + +10:23:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: s +Application: ExecIf +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:23:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-use +Exten: s +Priority: 30 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +10:23:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79082910679 + + +10:23:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484206.9982 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:23:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10, + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195. +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-rec +Exten: s +Priority: 9 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724484206.9 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79082910 +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000ab2;2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial- +Exten: s +Priority: 5 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790829 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT +Value: 2 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: GotoIf +AppData: 1?godial + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: QAGENT +Value: 12 +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 4 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: 13 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: RINGTIME +Value: + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724484206.9979 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000ab0;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000ab0;2 + + +10:23:27 + +Event: VarSet +Privilege: d +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000ab0;2 +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: CALLERID(number)=79082910679 +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 +Variable: +Value: EXTENSION + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: ARG +Value: 1 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724484206.9981 +Linkedid: 17244 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79082910679 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_D +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-us +Exten: s +Priority: 32 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790829 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: CDR(cnam)=79082910679 +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: ext-local + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: __PICKUPMARK +Value: 12 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-102326 +Variable: __TIMESTR +Value: 20240824-102326 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-chec +Exten: s +Priority: 11 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724484206 +Linkedid: 1724484195.9977 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) +Variable: LOCAL(ARG3) +Value: 12 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record- +Exten: recordcheck +Priority: 18 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79082910679) +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-re +Exten: recordcheck +Priority: 21 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_ +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79082910679-20240824-102326-1724484206.9979.wav + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484206.9979 +Linkedid: 17 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724484206.9979 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 17244 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan, +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip +Variable: THISDIAL +Value: PJSIP/12/sip + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724484206.9 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 43 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: RINGTIME +Value: + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195. +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724484206 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724484206.9981 +Linkedid: 17244841 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79082910679) +Variable: MACRO_DEPTH +Value: 1 + + +10:23:27 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-13-79082910679-20240824-102326-1724484206.9981.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79082910679-20240824-102326-1724484206.9981.wav,abi(), + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: __REC_STATUS +Value: RE +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 +Variable: MACRO_EXTEN +Value: s + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-di +Exten: s +Priority: 1 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dia +Channel: PJSIP/10-0000118d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484206.9984 +Linkedid: 1724484195.9977 +Variable: DIALEDPEERNUMBER +Value: 10/sip +Extension: dstring +Application: Set +AppData: ITER=1 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000118d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484206.9984 +Linkedid: 1724484195.9977 +Variable: __TIMESTR +Value: 20240824-102326 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000118d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484206.9984 +Linkedid: 1724484195.9977 +Variable: __QC_CONFIRM +Value: 0 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000118d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 172 +Linkedid: 1724484195.9977 +Variable: __RINGINGSENT +Value: TRUE + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000118d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: +Uniqueid: 1724484206.9984 +Linkedid: 1724484195.9977 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: DB_RESULT +Value: PJSIP/13 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: DSTRING +Value: PJSIP/13/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip +Variable: DSTRING +Value: PJSIP/13/sip + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_CONTEX +Value: s +Extension: s +Application: MacroExit +AppData: + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 52 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: ANSWEREDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000118e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484206.9985 +Linkedid: 1724484195.9977 +Variable: __CWIGNORE +Value: TRUE + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000118f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484206.9986 +Linkedid: 1724484195.9977 +Variable: __CALLFILENAME +Value: external-13-7908291 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000118f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484206.9986 +Linkedid: 1724484195.9977 +Variable: __TTL +Value: 63 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000118f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484206.9986 +Linkedid: 1724484195.9977 +Variable: __FROMQUEUEEXTEN +Value: 79082910679 + + +10:23:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000118f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724484206.9986 +Linkedid: 1724484195.9977 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000118f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724484206.9986 +Linkedid: 1724484195.9977 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000118e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 172 +Linkedid: 1724484195.9977 +Variable: __FROMEXTEN +Value: 79082910679 +DestChannel: PJSIP/10-0000118d +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724484206.9984 +DestLinkedid: 1724484195.9977 +DialString: 10/sip + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000118e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484206.9985 +Linkedid: 1724484195.9977 +Variable: __QC_CONFIRM +Value: 0 +Device: Local/10@from-queue +State: INUSE + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12- +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484206.9985 +Linkedid: 1724484195.9977 +Variable: __RINGINGSENT +Value: TRUE + + +10:23:27 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP +DestChannel: Local/10@from-queue-00000ab2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 + + +10:23:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000118e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: SIPHEADERKEYS +Value: +DestChannel: Local/13@from-queue-00000ab1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484206.9980 +DestLinkedid: 1724484195.9977 +DialString: 13/sip +DialStatus: RINGING + + +10:23:27 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484206.9978 +Linkedid: 1724484195.9977 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +Device: Local/13@from-queue +State: INUSE +DestChannel: PJSIP/12-0000118e +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724484206.9985 +DestLinkedid: 1724484195.9977 +DialString: 12/sip + + +10:23:27 + +Event: DialState +Privilege: call,all +Device: Local/12@from-queue +State: INUSE +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +DestChannel: Local/12@from-queue-00000ab0;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484206.9978 +DestLinkedid: 1724484195.9977 +DialStatus: RINGING + + +10:23:30 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3243 +DestChannel: Local/12@from-queue-00000ab0;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484206.9978 +DestLinkedid: 1724484195.9977 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/12 +State: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:23:30 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3608 +Device: PJSIP/13 +State: RINGING +DestChannel: Local/13@from-queue-00000ab1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484206.9980 +DestLinkedid: 1724484195.9977 +DialStatus: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:23:31 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 4275 +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +DestChannel: PJSIP/10-0000118d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724484206.9984 +DestLinkedid: 1724484195.9977 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 295 +LastCall: 1724483716 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:23:34 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse +Channel: PJSIP/10-0000118d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724484206.9984 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +10:23:34 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/10 +State: INUSE +Channel: PJSIP/10-0000118d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724484206.9984 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: CFIGNORE= +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 295 +LastCall: 1724483716 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: CF +Value: 1 + + +10:23:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000118d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724484206.9984 +Linkedid: 17244841 +Variable: FORWARD_CONTEXT +Value: from-internal +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal + + +10:23:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000118d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724484206.9984 +Linkedid: 1724484195.9977 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000118c)= +Variable: MACRO_DEPTH +Value: 2 + + +10:23:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000118d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724484206.9984 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +10:23:34 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000ab2;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484206.9982 +Linkedid: 1724484195.9977 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +DestChannel: PJSIP/10-0000118d +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724484206.9984 +DestLinkedid: 1724484195.9977 +DialStatus: ANSWER + + +10:23:34 + +Event: HangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +DestChannel: Local/12@from-queue-00000ab0;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484206.9978 +DestLinkedid: 1724484195.9977 +DialStatus: CANCEL +Device: Local/10@from-queue +State: INUSE + + +10:23:34 + +Event: AgentConnect +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000ab1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484206.9980 +DestLinkedid: 1724484195.9977 +DialStatus: CANCEL +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 + + +10:23:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +DestChannel: PJSIP/12-0000118e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082910679 +DestConnectedLineName: 79082910679 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724484206.9985 +DestLinkedid: 1724484195.9977 +DialStatus: CANCEL +Variable: ARG1 +Value: novm + + +10:23:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: ARG1 +Value: novm + + +10:23:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_EXTEN +Value: 13 +Cause: 16 + + +10:23:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7908291 +CallerIDName: 79082910679 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: ARG1 +Value: +Extension: h +Application: Macro +AppData: hangupcall, + + +10:23:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: GotoIf +AppData: 1?theend + + +10:23:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +10:23:34 + +Event: BridgeCreate +Privilege: call,all +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +10:23:35 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/10@from-queue-00000ab2;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 48c615e0-8853-417c-a218-2e7a90412989 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10003 +Variable: BRIDGEPVTCALLID + + +10:23:35 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 48c615e0-8853-417c-a218-2e7a90412989 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000ab0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484206.9979 +Linkedid: 1724484195.9977 +Variable: MACRO_EXTEN +Value: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10005 +Extension: s +Application: Hangup +AppData: + + +10:23:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_EXTEN +Value: +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79082910679 +Destination: 12 +DestinationContext: ext-local +CallerID: "79082910679" <79082910679> +DestinationChannel: PJSIP/12-0000118e +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 8 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484206.9979 +UserField: +Device: Local/12@from-queue +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10006 + + +10:23:35 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484206.9981 +Linkedid: 1724484195.9977 +Variable: MACRO_PRIORITY +Value: 1 +Source: 79082910679 +Destination: 13 +DestinationContext: ext-local +CallerID: "79082910679" <79082910679> +DestinationChannel: PJSIP/13-0000118f +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 8 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484206.9981 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10007 + + +10:23:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +10:23:47 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@from-queue-00000ab2;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 48c615e0-8853-417c-a218-2e7a90412989 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:23:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Cause: 16 +BridgeUniqueid: 48c615e0-8853-417c-a218-2e7a90412989 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_CONTEXT +Value: ext-queues + + +10:23:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: DIALEDTIME +Value: 21 +Device: Local/10@from-queue +State: NOT_INUSE +BridgeUniqueid: 04c82790-b1e2-4c08-a6fa-fc3f9d054004 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:23:47 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 04c82790-b1e2-4c08-a6fa-fc3f9d054004 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 8 +TalkTime: 13 +Reason: caller +Variable: MACRO_EXTEN +Value: 10 + + +10:23:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: GotoIf +AppData: 1?theend + + +10:23:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:23:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000118d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082910679 +ConnectedLineName: 79082910679 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484206.9984 +Linkedid: 1724484195.9977 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10008 +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Source: 79082910679 +Destination: 10 +DestinationContext: ext-local +CallerID: "79082910679" <79082910679> +DestinationChannel: PJSIP/10-0000118d +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 21 +BillableSeconds: 13 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724484206.9983 +UserField: + + +10:23:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab2;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484206.9983 +Linkedid: 1724484195.9977 +Variable: MACRO_CONTEXT +Value: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: + + +10:23:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: MACRO_EXTEN +Value: +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 296 +LastCall: 1724484227 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10009 +Extension: s +Application: Hangup +AppData: + + +10:23:48 + +Event: Hangup +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000118c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082910679 +CallerIDName: 79082910679 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484195.9977 +Linkedid: 1724484195.9977 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000175; mintxmes=085.366563; maxtxmes=085.367289; avgtxmes=085.367143; stdevtxmes=000.000290; +Source: 79082910679 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082910679" <79082910679> +DestinationChannel: Local/12@from-queue-00000ab0;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 18 +BillableSeconds: 18 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484195.9977 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10010 + + +10:23:48 + +Event: Cdr +Privilege: cdr,all +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-0000118c +ActionID: 10011 +AccountCode: +Source: 79082910679 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082910679" <79082910679> +DestinationChannel: Local/10@from-queue-00000ab2;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 21 +BillableSeconds: 21 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724484195.9977 +UserField: + + +10:25:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +10:25:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:25:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-102550 +Variable: __YEAR +Value: 2024 + + +10:25:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:25:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +10:25:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:25:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +10:25:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +10:25:50 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +10:25:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 14 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: __REVERSAL_REJECT +Value: FALSE + + +10:25:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 2 +Application: AGI +AppData: agi + + +10:25:52 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +CommandId: 1239474558 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +10:25:52 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +CommandId: 1964711327 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +10:25:52 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +CommandId: 124064491 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724484350.9987 +Linkedid: 172448435 +CommandId: 1405974466 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 17 +Linkedid: 1724484350.9987 +Variable: AMPUSER +Value: 79021495945 +Extension: s +Application: Set +AppData: AMPUSER=79021495945 + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 4 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dont +Variable: VQ_AINFO +Value: + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: QRINGOPTS +Value: R +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:25:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +10:25:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +10:26:01 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724484361 +Variable: QUEUEJOINTIME +Value: 1724484361 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: RINGING +Channel: Local/12@from-queue-00000ab3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484361.9988 +Linkedid: 1724484350.9987 +Queue: 194 +Position: 1 +Count: 1 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484361.9988 +Linkedid: 1724484350.9987 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484361.9988 +Linkedid: 1724484350.9987 +Variable: __REC_STATUS +Value: INITIALIZED + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: __FROM_DID +Value: 79217365096 + + +10:26:01 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ab3;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484361.9988 +LocalOneLinkedid: 1724484350.9987 +LocalTwoChannel: Local/12@from-queue-00000ab3;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79021495945 +LocalTwoCallerIDName: 79021495945 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724484361.9989 +LocalTwoLinkedid: 17 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue- +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484361.9990 +Linkedid: 1724484350.9987 +DestChannel: Local/12@from-queue-00000ab3;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724484361.9988 +DestLinkedid: 1724484350.9987 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;1 +ChannelState: 0 +ChannelStateDesc: Dow +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484361.9990 +Linkedid: 1724484350.9987 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: __MONTH +Value: 08 +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: __SIGNORE +Value: TRUE +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484361.99 +Linkedid: 1724484350.9987 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: __DAY +Value: 24 +Extension: 12 +Application: GotoIf +AppData: 0?hangup + + +10:26:01 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000ab4;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484361.9990 +LocalOneLinkedid: 1724484350.9987 +LocalTwoChannel: Local/13@from-queue-00000ab4;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79021495945 +LocalTwoCallerIDName: 79021495945 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724484361.9991 +LocalTwoLinkedid: 1724484350.9987 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000ab4;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 172 + + +10:26:01 + +Event: VarSet +Privilege: dialpl +Channel: Local/10@from-queue-00000ab5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484361.9992 +Linkedid: 1724484350.9987 +DestChannel: Local/13@from-queue-00000ab4;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724484361.9990 +DestLinkedid: 1724484350.9987 +DialString: Local/13@from-queue/n +Variable: __CWIGNORE +Value: TRUE +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484361.9992 +Linkedid: 1724484350.9987 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484361.9992 +Linkedid: 1724484350.9987 +Variable: __REC_STATUS +Value: INITIALIZED + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: __FROM_DID +Value: 79217365096 + + +10:26:01 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000ab5;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484361.9992 +LocalOneLinkedid: 1724484350.9987 +LocalTwoChannel: Local/10@from-queue-00000ab5;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79021495945 +LocalTwoCallerIDName: 79021495945 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +DestChannel: Local/10@from-queue-00000ab5;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724484361.9992 +DestLinkedid: 1724484350.9987 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Variable: DB_RESULT +Value: 0 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG3 +Value: 0 + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: user-callerid, + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79021495945 + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 29 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +10:26:01 + +Event: Newexten +Privilege: d +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79021495945 + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: RingGroupM +Variable: MACRO_DEPTH +Value: 1 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: RT +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: __FROMEXTEN +Value: 79021495945 +Extension: s +Application: Set +AppData: __FROMEXTEN=79021495945 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 17244 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 7 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: __CALLFILENAME +Value: external-12-79021495945-20240824-102601-1724484361.9989 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79021495945-20240824-102601-1724484361.9989 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000ab3;2 +Variable: MACRO_DEPTH +Value: 1 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: recordcheck +Priority: 25 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: ARG3 +Value: 12 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 790214959 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: DB_RESULT +Value: 12 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +10:26:01 + +Event: +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +10:26:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +10:26:01 + +Event: Newexten +Privilege: dialpla +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9989 +Linkedid: 1724 +Variable: PROGRESSTIME +Value: + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001191 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484361.9994 +Linkedid: +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DIALEDPEERNUMBER +Value: 12/sip + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001191 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484361.9994 +Linkedid: 1724484350.9987 +Variable: __YEAR +Value: 2024 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001191 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484361.9994 +Linkedid: 1724484350.9987 +Variable: __SIGNORE +Value: TRUE + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001191 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484361.9994 +Linkedid: 1724484350.9987 +Variable: __MOHCLASS +Value: + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001191 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724484361.9994 +Linkedid: 1724484350.9987 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 7902149594 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 790214959 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:26:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:26:02 + +Event: Newexten +Privilege: dialpl +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79021495945 + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: s +Application: GotoIf +AppData: 0?cnum +Variable: MACRO_DEPTH +Value: 2 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_EXTEN +Value: 10 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 790214959 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: __TIMESTR +Value: 20240824-102601 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-102601 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPT +Value: 1 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: LOCAL(ARG3) +Value: 10 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79021495945) + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79021495945-20240824-102601-1724484361.9993.wav + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7902149594 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 17244 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: THISDIAL +Value: PJSIP/10/sip +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.998 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +10:26:02 + +Event: V +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724484361.9993 +Linkedid: 1 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +10:26:02 + +Event: Newcha +Privilege: call,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: PROGRESSTIME_MS +Value: +DestChannel: Local/12@from-queue-00000ab3;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484361.9988 +DestLinkedid: 1724484350.9987 +DialString: 12/sip +DialStatus: RINGING + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001192 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484361.9995 +Linkedid: 1724484350.9987 +Variable: __MON_FMT +Value: wav + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001192 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484361.9995 +Linkedid: 1724484350.9987 +Variable: __RINGTIMER +Value: 60 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001192 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 172 +Linkedid: 1724484350.9987 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001192 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724484361.9995 +Linkedid: 1724484350.9987 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724484361.9995 +Linkedid: 1724484350.9987 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +Device: Local/12@from-queue +State: INUSE + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790214959 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: DB_RESULT +Value: EXTENSION +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:26:02 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79021495945 + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-cal +Exten: s +Priority: 9 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: s +Application: GotoIf +AppData: 0?cnum +Variable: MACRO_DEPTH +Value: 2 + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 17244 +Linkedid: 1724484350.9987 +DestChannel: Local/10@from-queue-00000ab5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484361.9992 +DestLinkedid: 1724484350.9987 +DialString: 10/sip +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79021495945 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: RingGroupMethod=none +Variable: MACRO_DEPTH +Value: 1 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 790 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: __FROMEXTEN=79021495945 +Variable: MACRO_DEPTH +Value: 1 + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordch +Priority: 11 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724484 +Linkedid: 1724484350.9987 +Variable: __CALLFILENAME +Value: external-13-79021495945-20240824-102601-1724484361.9991 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79021495945-20240824-102601-1724484361.9991 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000ab4;2 +Variable: __RECORD_ID +Value: Local/13@from- + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: ARG3 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 +Variable: MACRO_DEPTH +Value: 2 + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 7902 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: dstring +Application: Set +AppData: DEVICES=13 +Variable: DEVICES +Value: 13 + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 33 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +10:26:02 + +Event: VarSet +Privilege: di +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +10:26:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +10:26:02 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/13-00001193 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: PROGRESSTIME_MS +Value: + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001193 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484361.9996 +Linkedid: 1724484350.9987 +Variable: __MON_FMT +Value: wav + + +10:26:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001193 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484361.9996 +Linkedid: 1724484350.9987 +Variable: __FROMQ +Value: true + + +10:26:02 + +Event: DialBegin +Privilege: call,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-00001193 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: + + +10:26:02 + +Event: Registry +Privilege: system,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/13@from-queue-00000ab4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484361.9990 +DestLinkedid: 1724484350.9987 +DialStatus: RINGING +ChannelType: PJSIP +Username: sip +Domain: sip +Status: Registered + + +10:26:05 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 3717 +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +DestChannel: Local/12@from-queue-00000ab3;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484361.9988 +DestLinkedid: 1724484350.998 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:26:05 + +Event: DialState +Privilege: call,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 296 +LastCall: 1724484227 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 3828 +DestChannel: Local/10@from-queue-00000ab5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484361.9992 +DestLinkedid: 1724484350.998 +DialStatus: RINGING + + +10:26:05 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 4166 +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: PJSIP/13-00001193 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724484361.9996 +DestLinkedid: 1724484350.9987 +DialStatus: RINGING + + +10:26:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001193 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484361.9996 +Linkedid: 1724484 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/13 +State: INUSE + + +10:26:07 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/13-00001193 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724484361.9996 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: CFIGNORE= +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 416 +LastCall: 1724481220 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: CFIGNORE +Value: + + +10:26:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001193 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724484361.9996 +Linkedid: 1724484350.9987 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +10:26:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001193 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: macro-blk +Exten: s +Priority: 1 +Uniqueid: 1724484361.9996 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001190)= + + +10:26:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001193 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 8 +Uniqueid: 1724484361.9996 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +10:26:07 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000ab4;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484361.9990 +Linkedid: 1724484350.9987 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-00001193 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724484361.9996 +DestLinkedid: 1724484350.9987 +DialStatus: ANSWER +CID-CallingPres: 0 (Presentation + + +10:26:07 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: 5c3c60ad-8284-40cb-87cc-673089a65d3e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 7902 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484361.9996 +Linkedid: 1724484350.9987 +DestChannel: Local/10@from-queue-00000ab5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484361.9992 +DestLinkedid: 1724484350.9987 +DialStatus: CANCEL +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +10:26:07 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/10@from-queue-00000ab5;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484361.9992 +Linkedid: 1724484350.9987 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000ab5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484361.9992 +DestLinkedid: 1724484350.9987 +DialStatus: CANCEL +Device: Local/13@from-queue +State: INUSE + + +10:26:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +DestChannel: Local/13@from-queue-00000ab4;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484361.9990 +DestLinkedid: 1724484350.9987 +DialStatus: CANCEL +Device: Local/10@from-queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: ARG1 +Value: novm +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 6 +RingTime: 6 + + +10:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 790214 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: ARG4 +Value: + + +10:26:08 + +Event: DialEnd +Privilege: call,all +Exten: h +Context: macro +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: MACRO_IN_HANGUP +Value: 1 +BridgeUniqueid: eb9e7ec0-7c84-40be-87f4-b4502f8bf00b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Source: 79021495945 +Destination: 12 +DestinationContext: ext-local +CallerID: "79021495945" <79021495945> +DestinationChannel: PJSIP/12-00001191 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484361.9989 +UserField: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484361.9993 +Linkedid: 1724484350.9987 +Variable: ARG1 +Value: novm + + +10:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Variable: ARG1 +Value: +Extension: s +Application: GotoIf +AppData: 1?theend + + +10:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 172 +Linkedid: 1724484350.9987 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:26:08 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/12-00001191 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724484361.9995 +Linkedid: 1724484350.9987 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 26 +Cause-txt: Answered elsewhere + + +10:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 12 +ConnectedLineName: Реги +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484361.9989 +Linkedid: 1724484350.9987 +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: 5c3c60ad-8284-40cb-87cc-673089a65d3e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: MACRO_DEPTH +Value: 0 +Device: PJSIP/12 +State: NOT_INUSE + + +10:26:08 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/13@from-queue-00000ab4;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484361.9990 +Linkedid: 1724484350.9987 +Variable: MACRO_PRIORITY +Value: 1 +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10013 +BridgeUniqueid: eb9e7ec0-7c84-40be-87f4-b4502f8bf00b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +10:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484361.9 +Linkedid: 1724484350.9987 +Variable: MACRO_EXTEN +Value: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10016 +Extension: s +Application: Hangup +AppData: + + +10:26:08 + +Event: RTCPReceived +Privilege: reporting,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10017 +Source: 79021495945 +Destination: 10 +DestinationContext: ext-local +CallerID: "79021495945" <79021495945> +DestinationChannel: PJSIP/10-00001192 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484361.9993 +UserField: +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842ef8d0 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8682064.538986 +SentRTP: 39500608 +SentPackets: 847 +SentOctets: 135520 +Report0SourceSSRC: 0x493b61e4 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 24931 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 16 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +10:26:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 790214 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484361.9990 +Linkedid: 1724484350.9987 +Variable: RTPAUDIOQOSRTTBRIDGED +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +10:26:47 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484350.9987 +Linkedid: 17244843 +Variable: BRIDGEPVTCALLID +Value: +DestChannel: Local/13@from-queue-00000ab4;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021495945 +DestConnectedLineName: 79021495945 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484361.9990 +DestLinkedid: 1724484350.9987 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 6 +TalkTime: 40 +Reason: caller +BridgeUniqueid: eb9e7ec0-7c84-40be-87f4-b4502f8bf00b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:26:47 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Cause: 16 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +10:26:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: BRIDGEPEER +Value: +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: 5c3c60ad-8284-40cb-87cc-673089a65d3e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:26:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Variable: MACRO_EXTEN +Value: 13 + + +10:26:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484361.9991 +Linkedid: +Variable: MACRO_CONTEXT +Value: + + +10:26:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab4;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Cause: 16 +Extension: s +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +10:26:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001193 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021495945 +ConnectedLineName: 79021495945 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484361.9996 +Linkedid: 1724484350.9987 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: 5c3c60ad-8284-40cb-87cc-673089a65d3e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +10:26:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 417 +LastCall: 1724484407 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10018 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_CONTEXT + + +10:26:47 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 79021495945 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79021495945" <79021495945> +Channel: PJSIP/Megafon_3-00001190 +DestinationChannel: Local/12@from-queue-00000ab3;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 17 +BillableSeconds: 17 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484350.9987 +UserField: +UserEvent: refreshcallhistory +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Family: refreshcallhistory +ActionID: 10019 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484350.9987 +Linkedid: 1724484350.9987 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: RTPAUDIOQOSRTT + + +10:26:47 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021495945 +CallerIDName: 79021495945 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484361.9991 +Linkedid: 1724484350.9987 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/13@from-queue +State: NOT_INUSE +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Source: 79021495945 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79021495945" <79021495945> +DestinationChannel: Local/13@from-queue-00000ab4;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 45 + + +10:26:47 + +Event: Cdr +Privilege: cdr,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: Local/13@from-queue-00000ab4;2 +ActionID: 10021 +AccountCode: +Source: 79021495945 +Destination: 13 +DestinationContext: ext-local +CallerID: "79021495945" <79021495945> +DestinationChannel: PJSIP/13-00001193 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 45 +BillableSeconds: 39 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724484361.9991 +UserField: + + +10:27:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 0?initialize + + +10:27:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __YEAR +Value: 2024 + + +10:27:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +10:27:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: FROMEXTEN +Value: 79116155545 + + +10:27:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:27:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 + + +10:27:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +10:27:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 12 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +10:27:56 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Device: PJSIP/Megafon_3 +State: INUSE + + +10:27:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: 2 +Application: AGI +AppData: agi + + +10:27:58 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +CommandId: 20553719 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +10:27:58 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +CommandId: 951496947 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: 2 +Application: Set +AppData: DEVICE_STATE(Custom +Variable: DB_RESULT +Value: + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megaf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: 194 +Application: Macro +AppData: user-callerid, +Variable: MACRO_DEPTH +Value: 1 + + +10:27:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-00001194 + + +10:27:58 + +Event: New +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=79116155545 + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: HOTDESKCALL=0 + + +10:27:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +10:27:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: +Linkedid: 1724484476.9997 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +10:27:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: s +Application: Exec +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +10:27:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +10:27:58 + +Event: Newexten +Privilege: d +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +10:27:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: VQ_AINFO +Value: +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: 194 +Application: Set +AppData: QRINGOPTS=R +Variable: QRINGOPTS +Value: R + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +10:27:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +10:27:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 791161 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:27:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext +Exten: 194 +Priority: 33 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +10:27:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +10:28:07 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724484487 +Variable: QUEUEJOINTIME +Value: 1724484487 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: RINGING +Channel: Local/12@from-queue-00000ab6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484487.9998 +Linkedid: 1724484476.9997 +Queue: 194 +Position: 1 +Count: 1 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484487.9998 +Linkedid: 1724484476.9997 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484487.9998 +Linkedid: 1724484476.9997 +Variable: __REC_STATUS +Value: INITIALIZED + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: __FROM_DID +Value: 79217365096 + + +10:28:07 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ab6;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484487.9998 +LocalOneLinkedid: 1724484476.9997 +LocalTwoChannel: Local/12@from-queue-00000ab6;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116155545 +LocalTwoCallerIDName: 79116155545 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724484487.9999 +LocalTwoLinkedid: 17 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from- +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484487.10000 +Linkedid: 1724484476.9997 +DestChannel: Local/12@from-queue-00000ab6;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724484487.9998 +DestLinkedid: 1724484476.9997 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484487.10000 +Linkedid: 1724484476.9997 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484487.10000 +Linkedid: 1724484476.9997 +Variable: __DAY +Value: 24 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: __NODEST +Value: 194 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: __MOHCLASS +Value: + + +10:28:07 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000ab7;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484487 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +DestChannel: Local/13@from-queue-00000ab7;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724484487.10000 +DestLinkedid: 1724484476.9997 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 12 +Application: Set +AppData: __FROMQ=true +Variable: QAGENT +Value: 12 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +Variable: DB_RESULT +Value: 0 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.999 +Variable: ARG2 +Value: 12 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +10:28:07 + +Event: Newexten +Privilege: dialp +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: AMPUSER +Value: 79116155545 +Extension: s +Application: Set +AppData: AMPUSER=79116155545 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: 13 +Application: Set +AppData: QAGENT=13 +Variable: QAGENT +Value: 13 + + +10:28:07 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: DB_RESULT +Value: 0 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +10:28:07 + +Event: Va +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: ARG2 +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: CHANCONTEXT +Value: from + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: AMPUSER=79116155545 +Variable: MACRO_DEPTH +Value: 2 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 +Variable: MACRO_DEPTH +Value: 2 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79116155545 + + +10:28:07 + +Event: VarSet +Privilege: dialpla +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:28:07 + +Event: N +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 +Variable: MACRO_DEPTH +Value: 1 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724484487.9999 +Linkedid: 172 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: from-queue +Exten: s +Priority: 54 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 2 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: REC_POLICY_MODE_SAVE= + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79116155545-20240824-102807-1724484487.10001 +Variable: MACRO_DEPTH +Value: 1 + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000ab7;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000ab7;2 + + +10:28:07 + +Event: V +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: __FROMEXTEN=79116155545 +Variable: MACRO_DEPTH +Value: 1 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724484487.9999 +Linkedid: 1724 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +10:28:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79116155545 and 12 + + +10:28:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724484 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79116155545) + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 17244 +Linkedid: 1724484476.9997 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: recordcheck +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +10:28:08 + +Event: VarS +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724484487.10 +Linkedid: 1724484476.9997 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 17 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DE +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79116155545 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724484487.10 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724484487 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: RINGTIME +Value: + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub +Exten: recordcheck +Priority: 25 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 +Variable: MACRO_EXTEN +Value: s + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476 +Variable: __REC_STATUS +Value: RECORDING +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Variable: __PICKUPMARK +Value: 13 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Variable: __NODEST +Value: 194 + + +10:28:08 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-00001195 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484487.10002 +Linkedid: 1724484476.9997 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +Variable: __RVOL_MODE +Value: dontcare +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484487.10002 +Linkedid: 1724484476.9997 +Variable: __REVERSAL_REJECT +Value: FALSE + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: 10 +Priority: 1 +Uniqueid: 1724484487.10002 +Linkedid: 1724484476.9997 +Variable: __DIRECTION +Value: + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001194 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: __TIMESTR +Value: 2024082 + + +10:28:08 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484476.9997 +Linkedid: 1724484 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000ab8;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484487.10002 +LocalOneLinkedid: 1724484476.9997 +LocalTwoChannel: Local/10@from-queue-00000ab8;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116155545 +LocalTwoCallerIDName: 79116155545 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724484487.10003 +LocalTwoLinkedid: 1724484476.9997 +LocalOptimization: No + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484487.10003 +Linkedid: +DestChannel: Local/10@from-queue-00000ab8;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724484487.10002 +DestLinkedid: 1724484476.9997 +DialString: Local/10@from-queue/n +Extension: 10 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MA +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79116155545 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +10:28:08 + +Event: Newex +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: RINGTI +Value: + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001196 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484487.10005 +Linkedid: 1724484476.9997 +Variable: __FROMEXTEN +Value: 79116155545 + + +10:28:08 + +Event: +Privilege: dialplan,all +Channel: PJSIP/12-00001196 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484487.10005 +Linkedid: 1724484476.9997 +Variable: __QC_CONFIRM +Value: 0 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484487.10005 +Linkedid: 1724484476.9997 +Variable: __RINGINGSENT +Value: TRUE + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001196 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724484487.10005 +Linkedid: 1724484476.9997 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +10:28:08 + +Event: Newexten +Privilege: dialpl +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: DB_RESULT +Value: EXTENSION +Extension: s +Application: Return +AppData: + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: CHANCONTEXT +Value: from-queue-00000ab8;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ab8;2 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: CHANEXTEN=10 +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: HOTDESKEXTEN +Value: 10@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +10:28:08 + +Event: VarSet +Privilege: dialplan +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: ARG1 +Value: novm + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: LOCAL(ARG2) +Value: 10 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: NOW +Value: 1724484487 +Extension: s +Application: Set +AppData: NOW=1724484487 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 172448448 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: LOCAL(ARG1) +Value: yes + + +10:28:08 + +Event: Newexten +Privilege: dialplan,al +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: RECFROMEXTEN +Value: 79116155545 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116155545) + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79116155545-20240824-102807-1724484487.10003.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79116155545-20240824-102807-1724484487.10003.wav + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: recordcheck +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACR +Value: 0 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: DB_RESULT +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +10:28:08 + +Event: Devic +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: PJSIP/10/sip + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724 +Linkedid: 1724484476.9997 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:28:08 + +Event: V +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +10:28:08 + +Event: Newexten +Privilege: dialpl +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484 +Linkedid: 1724484476.9997 +Variable: ANSWEREDTIME +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +10:28:08 + +Event: VarSet +Privilege: +Channel: PJSIP/10-00001197 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484487.10006 +Linkedid: 1724484476.9997 +Variable: __CWIGNORE +Value: TRUE + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001197 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484487.10006 +Linkedid: 1724484476.9997 +Variable: __MONTH +Value: 08 + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001197 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484487.10006 +Linkedid: 1724484476.9997 +Variable: __RVOL_MODE +Value: dontcare + + +10:28:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001197 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-interna +Exten: s +Priority: 1 +Uniqueid: 1724484487.10006 +Linkedid: 1724484476.9997 +Variable: __FROM_DID +Value: 79217365096 + + +10:28:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001197 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724484487.10006 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +10:28:08 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 172 +Linkedid: 1724484476.9997 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-00001196 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116155545 +DestConnectedLineName: 79116155545 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724484487.10005 +DestLinkedid: 1724484476.9997 +DialString: 12/sip + + +10:28:08 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +DestChannel: Local/10@from-queue-00000ab8;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116155545 +DestConnectedLineName: 79116155545 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484487.10002 +DestLinkedid: 1724484476.9997 +DialString: 10/sip +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE + + +10:28:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 3260 +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +10:28:10 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +DestChannel: Local/13@from-queue-00000ab7;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116155545 +DestConnectedLineName: 79116155545 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484487.10000 +DestLinkedid: 1724484476.9997 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 417 +LastCall: 1724484407 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:28:11 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/10-00001197 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724484487.10006 +Linkedid: 1724484476.9997 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING + + +10:28:11 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: RINGTIME_MS +Value: 3519 +DestChannel: Local/10@from-queue-00000ab8;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116155545 +DestConnectedLineName: 79116155545 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484487.10002 +DestLinkedid: 1724484476.9997 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 296 +LastCall: 1724484227 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:28:11 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 4128 +DestChannel: Local/12@from-queue-00000ab6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116155545 +DestConnectedLineName: 79116155545 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484487.9998 +DestLinkedid: 1724484476.9997 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:28:13 + +Event: DeviceStateChange +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +10:28:13 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 417 +LastCall: 1724484407 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/13-00001195 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: +AccountCode: +Priority: 3 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +10:28:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +10:28:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001194)= + + +10:28:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 791161 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +10:28:13 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000ab7;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484487.10000 +Linkedid: 1724484476.9997 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-00001195 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116155545 +DestConnectedLineName: 79116155545 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724484487.10004 +DestLinkedid: 1724484476.9997 +DialStatus: ANSWER +BridgeUniqueid: dd6bd50f-f20e-465d-be1f-71a8896f5f30 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:28:13 + +Event: HangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +DestChannel: Local/12@from-queue-00000ab6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116155545 +DestConnectedLineName: 79116155545 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484487.9998 +DestLinkedid: 1724484476.9997 +DialStatus: CANCEL + + +10:28:13 + +Event: QueueCallerLeave +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/10-00001197 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116155545 +DestConnectedLineName: 79116155545 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724484487.10006 +DestLinkedid: 1724484476.9997 +DialStatus: CANCEL +Device: Queue +State: NOT_INUSE + + +10:28:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 10 +ConnectedLineName: Регистр +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_EXTEN +Value: 10 +DestChannel: Local/13@from-queue-00000ab7;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116155545 +DestConnectedLineName: 79116155545 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484487.10000 +DestLinkedid: 1724484476.9997 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 6 +RingTime: 5 + + +10:28:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: ARG5 +Value: +DestChannel: PJSIP/12-00001196 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116155545 +DestConnectedLineName: 79116155545 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724484487.10005 +DestLinkedid: 1724484476.9997 +DialStatus: CANCEL + + +10:28:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:28:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_EXTEN +Value: 12 +Extension: s +Application: GotoIf +AppData: 1?theend + + +10:28:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Variable: MACRO_CONTEXT +Value: + + +10:28:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Cause: 26 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: +Cause-txt: Answered elsewhere + + +10:28:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ab8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_DEPTH +Value: 0 +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: 3d000b18-4736-4232-8085-70bc01b157c5 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Source: 79116155545 +Destination: 10 +DestinationContext: ext-local +CallerID: "79116155545" <79116155545> +DestinationChannel: PJSIP/10-00001197 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484487.10003 +UserField: + + +10:28:13 + +Event: Devic +Privilege: call,all +Channel: Local/12@from-queue-00000ab6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724484487.10003 +Linkedid: 1724484476.9997 +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Device: Local/13@from-queue +State: INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 79116155545 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116155545" <79116155545> +DestinationChannel: PJSIP/12-00001196 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484487.9999 +UserField: + + +10:28:13 + +Event: BridgeEnter +Privilege: call,all +Device: Local/12@from-queue +State: NOT_INUSE +Channel: Local/13@from-queue-00000ab7;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистр +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484487.9999 +Linkedid: 1724484476.9997 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: 3d000b18-4736-4232-8085-70bc01b157c5 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:28:13 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/13-00001195 +ActionID: 10023 +BridgeUniqueid: dd6bd50f-f20e-465d-be1f-71a8896f5f30 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: BRIDGEPEER +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +10:28:13 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: BRIDGEPVTCALLID +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10027 + + +10:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +10:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484487.10004 +Linkedid: 1724484476.9997 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000146; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Source: 79116155545 +Destination: 13 +DestinationContext: ext-local +CallerID: "79116155545" <79116155545> +DestinationChannel: PJSIP/13-00001195 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 51 +BillableSeconds: 45 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724484487.10001 +UserField: +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +10:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: DIALEDTIME_MS +Value: 51260 +BridgeUniqueid: dd6bd50f-f20e-465d-be1f-71a8896f5f30 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: ARG1 +Value: + + +10:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ab7;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001195 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484 +Linkedid: 1724484476.9997 +Variable: RTPAUDIOQOS +Value: ssrc=590465850;themssrc=2003652357;lp=0;rxjitter=0.000000;rxcount=2254;txjitter=0.001125;txcount=2281;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Extension: s +Application: GotoIf +AppData: 1?theend + + +10:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484487.10001 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 0 +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: Hangup +AppData: + + +10:28:58 + +Event: Hangup +Privilege: call,all +Channel: Local/13@from-queue-00000ab7;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116155545 +ConnectedLineName: 79116155545 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484487.10000 +Linkedid: 1724484476.9997 +Variable: BRIDGEPEER +Value: +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: 3d000b18-4736-4232-8085-70bc01b157c5 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:28:58 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 3d000b18-4736-4232-8085-70bc01b157c5 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: 1 + + +10:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 6 +TalkTime: 45 +Reason: agent +Device: Local/13@from-queue +State: NOT_INUSE +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 418 +LastCall: 1724484538 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001194 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10030 +Source: 79116155545 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116155545" <79116155545> +DestinationChannel: Local/12@from-queue-00000ab6;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484476.9997 +UserField: + + +10:28:59 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116155545 +CallerIDName: 79116155545 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724484476.9997 +Linkedid: 1724484476.9997 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Source: 79116155545 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116155545" <79116155545> +DestinationChannel: Local/10@from-queue-00000ab8;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 5 +BillableSeconds: 5 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484476.9997 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10031 + + +10:30:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +10:30:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724484648.10007 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:30:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724484648. +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-103048 +Variable: __YEAR +Value: 2024 + + +10:30:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:30:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +10:30:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:30:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +10:30:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +10:30:48 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +10:30:48 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +10:30:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +10:30:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +10:30:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: 2 +Application: AGI +AppData: agi + + +10:30:49 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +CommandId: 341236380 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +10:30:49 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +CommandId: 1742514871 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +10:30:50 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +CommandId: 2060844193 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +10:30:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724484648.100 +Linkedid: 1724484648.10007 +CommandId: 1234472954 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +10:30:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724484648.1 +Linkedid: 1724484648.10007 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +10:30:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724484648. +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +10:30:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: AMPUSER +Value: 79116036976 +Extension: s +Application: Set +AppData: AMPUSER=79116036976 + + +10:30:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +10:30:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +10:30:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +10:30:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +10:30:50 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +10:30:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +10:30:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +10:30:50 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +10:30:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +10:30:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7911 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +10:30:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +10:30:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +10:30:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +10:30:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +10:30:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:30:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3- +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:30:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +10:30:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: 194 +Application: QueueLog +AppData: 194,1724484648.10007,NONE,DID,79217365096 + + +10:30:59 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +10:30:59 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484648.10 +Linkedid: 1724484648.10007 +Variable: QUEUEJOINTIME +Value: 1724484659 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484659.10008 +Linkedid: 1724484648.10007 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484659.10008 +Linkedid: 1724484648.10007 +Variable: __RINGINGSENT +Value: TRUE + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484659.10008 +Linkedid: 1724484648.10007 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: __FROMQUEUEEXTEN +Value: 79116036976 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: __TIMESTR +Value: 20240824-103048 + + +10:30:59 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ab9;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484659.10008 +LocalOneLinkedid: 1724484648.10007 +LocalTwoChannel: Local/12@from-queue-00000ab9;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116036976 +LocalTwoCallerIDName: 79116036976 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724484659.10009 +LocalTwoLinkedid: 1724484648.10007 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ab9;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: en +DestAccountCode: + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484659.10010 +Linkedid: 1724484648.10007 +DestChannel: Local/12@from-queue-00000ab9;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724484659.10008 +DestLinkedid: 1724484648.10007 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484659.10010 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484659.10010 +Linkedid: 1724484648.10007 +Variable: __DIRECTION +Value: + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001198 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: __MON_FMT +Value: wav + + +10:30:59 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000aba;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484659.10010 +LocalOneLinkedid: 1724484648.10007 +LocalTwoChannel: Local/13@from-queue-00000aba;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116036976 +LocalTwoCallerIDName: 79116036976 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724484659.10011 +LocalTwoLinkedid: 1724484648.10007 +LocalOptimization: No + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484659.10012 +Linkedid: 1724484648.10007 +DestChannel: Local/13@from-queue-00000aba;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724484659.10010 +DestLinkedid: 1724484648.10007 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484659.10012 +Linkedid: 1724484648.10007 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484659.10012 +Linkedid: 1724484648.10007 +Variable: __DAY +Value: 24 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +10:30:59 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: __FROM_DID +Value: 79217365096 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: DB_RESULT +Value: EXTENSION + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: MACRO_CONTEXT +Value: ext-local + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: CHANCONTEXT +Value: from-queue-00000ab9;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ab9;2 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: CHANEXTEN=12 +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79116036976 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: __FROMQ +Value: true +Extension: 194 +Application: Goto +AppData: from-internal,13,1 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_EXTEN +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000aba;2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: CHANEXTEN +Value: 13 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: +Priority: 8 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000aba;2 +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 791 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-calle +Exten: s +Priority: 50 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: CALLERID(name)=79116036976 +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484659.10008 +Linkedid: 1724484648.10007 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724484659 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: __MON_FMT +Value: wav + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +10:30:59 + +Event: +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911603 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: recordcheck +Priority: 20 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79116036976-20240824-103059-1724484659.10009.wav,abi(), + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000ab9;2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 791160369 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: DEXTEN +Value: 12 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +10:30:59 + +Event: Newexten +Privilege: dialp +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: __DIRECTION +Value: +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000abb;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724484659.10012 +LocalOneLinkedid: 1724484648.10007 +LocalTwoChannel: Local/10@from-queue-00000abb;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116036976 +LocalTwoCallerIDName: 79116036976 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724484659.10013 +LocalTwoLinkedid: 1724484648.10007 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000abb;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724484659.10012 +DestLinkedid: 1724484648.10007 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79116036976 + + +10:30:59 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000aba; +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484659.10010 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: __FROMQ +Value: true + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: __TIMESTR=20240824-103059 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-che +Exten: s +Priority: 10 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +10:30:59 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79116036976 and 13 +Variable: MACRO_DEPTH +Value: 1 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724484659.10009 +Linkedid: 1 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARG3) +Value: 13 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: ANSWEREDTIME +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: RECFROMEXTEN +Value: 79116036976 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116036976) + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: __C +Value: 60 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79116036976-20240824-103059-1724484659.10011 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 7 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: ARG1 +Value: novm +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79116036976-20240824-103059-1724484659.10011.wav,abi(), + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000abb;2 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724484 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: HOTDESKEXTEN +Value: 10@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: __MIXMON_ID +Value: + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +10:30:59 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_PRIORITY +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=13) + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724484659.10011 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 13 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 +Variable: THISDIAL +Value: PJSIP/13 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: dstring +Application: NoOp +AppData: Debug +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724484659.10 +Linkedid: 1724484648.10007 +Variable: DSTRING +Value: PJSIP/13/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip +Variable: DSTRING +Value: PJSIP/13/sip + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_E +Value: 2 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724484659.10 +Linkedid: 1724484648.10007 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: ANSWEREDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Extension: +Application: Set +AppData: __TTL=63 +Variable: MACRO_DEPTH +Value: 2 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001199 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-inter +Exten: s +Priority: 1 +Uniqueid: 1724484659.10014 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79116036976 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001199 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484659.10014 +Linkedid: 1724484648.10007 +Variable: __FROMEXTEN +Value: 79116036976 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,al +Channel: PJSIP/12-00001199 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484659.10014 +Linkedid: 1724484648.10007 +Variable: __QC_CONFIRM +Value: 0 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001199 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484659.10014 +Linkedid: 1724484648.10007 +Variable: __RINGINGSENT +Value: TRUE + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: P +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724484659.10014 +Linkedid: 1724484648.10007 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484659.10015 +Linkedid: 1724484648.10007 +Variable: DIALEDPEERNUMBER +Value: 13/sip +Extension: s +Application: Return +AppData: + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000119a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484659.10015 +Linkedid: 1724484648.10007 +Variable: __TIMESTR +Value: 20240824-103059 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000119a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484659.10015 +Linkedid: 1724484648.10007 +Variable: __QC_CONFIRM +Value: 0 + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000119a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484659.10015 +Linkedid: 1724484648.10007 +Variable: __RINGINGSENT +Value: TRUE + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000119a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724484659.10015 +Linkedid: 1724484648.10007 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +10:30:59 + +Event: Newstate +Privilege: call,all +Channel: Local/12@from-queue-00000ab9;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-00001199 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724484659.10014 +DestLinkedid: 1724484648.10007 +DialString: 12/sip + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Device: Local/13@from-queue +State: INUSE +DestChannel: PJSIP/13-0000119a +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724484659.10015 +DestLinkedid: 1724484648.10007 +DialString: 13/sip +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +10:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +10:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +10:30:59 + +Event: VarSet +Privilege: dial +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +10:31:00 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79116036976 + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +DestChannel: Local/12@from-queue-00000ab9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484659.10008 +DestLinkedid: 1724484648.10007 +DialStatus: RINGING +Extension: s +Application: ExecIf +AppData: 0?Set +Variable: MACRO_DEPTH +Value: 1 + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 7911603697 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116036976) + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: reco +Priority: 20 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79116036976-20240824-103059-1724484659.10013.wav,abi(), + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-791 + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-che +Exten: exten +Priority: 12 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 2 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648. +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: dstring +Priority: 7 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 +Variable: THISDIAL +Value: PJSIP/10 + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +10:31:00 + +Event: Newexten +Privilege: dialpl +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724484659.10013 +Linkedid: 17244846 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 31 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724484659.10013 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALED +Value: + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: __REC_STATUS +Value: RECORDING + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: __DAY +Value: 24 + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: fr +Exten: s +Priority: 1 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: __QCONTEXT +Value: 0 + + +10:31:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: __DIRECTION +Value: + + +10:31:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +10:31:00 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/10@from-queue-00000abb;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484659.1 +DestLinkedid: 1724484648.10007 +DialString: 10/sip + + +10:31:00 + +Event: DeviceStateChange +Privilege: call,all +Device: Local/10@from-queue +State: INUSE + + +10:31:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000119a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724484659.10015 +Linkedid: 1724484648.10007 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +10:31:02 + +Event: DialState +Privilege: call,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/13 +State: RINGING +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: RINGTIME_MS +Value: 3074 +DestChannel: Local/13@from-queue-00000aba;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484659.10010 +DestLinkedid: 1724484648.10007 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 418 +LastCall: 1724484538 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:31:03 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 4055 +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/12 +State: RINGING +DestChannel: Local/12@from-queue-00000ab9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484659.10008 +DestLinkedid: 1724484648.10007 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:31:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +10:31:03 + +Event: DialState +Privilege: call,all +Device: PJSIP/10 +State: RINGING +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: RINGTIME_MS +Value: 4340 +DestChannel: Local/10@from-queue-00000abb;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484659.10012 +DestLinkedid: 1724484648.10007 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 296 +LastCall: 1724484227 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:31:04 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse +Channel: PJSIP/10-0000119b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/10 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 195 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint + + +10:31:05 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 296 +LastCall: 1724484227 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-0000119b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 791160 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: CFIGNORE +Value: +Extension: s +Application: Set +AppData: CFIGNORE= + + +10:31:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +10:31:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001198)= + + +10:31:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +10:31:05 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000abb;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484659.10012 +Linkedid: 1724484648.10007 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-0000119b +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724484659.10016 +DestLinkedid: 1724484648.10007 +DialStatus: ANSWER +BridgeUniqueid: 66ec5243-1236-4952-a7db-4de35a6442d8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:31:05 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +DestChannel: Local/13@from-queue-00000aba;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484659.10010 +DestLinkedid: 1724484648.10007 +DialStatus: CANCEL +BridgeUniqueid: 66ec5243-1236-4952-a7db-4de35a6442d8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:31:05 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/13@from-queue-00000aba;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484659.10010 +Linkedid: 1724484648.10007 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000aba;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484659.10010 +DestLinkedid: 1724484648.10007 +DialStatus: CANCEL +Device: + + +10:31:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Queue: 194 +Position: 1 +Count: 0 +Variable: ARG1 +Value: novm +DestChannel: Local/10@from-queue-00000abb;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484659.10012 +DestLinkedid: 1724484648.10007 +DialStatus: CANCEL +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +RingTime: 5 + + +10:31:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: ARG1 +Value: +DestChannel: PJSIP/12-00001199 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724484659.10014 +DestLinkedid: 1724484648.10007 +DialStatus: CANCEL +BridgeUniqueid: 66ec5243-1236-4952-a7db-4de35a6442d8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +10:31:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: ARG2 +Value: 12 + + +10:31:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 791160 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:31:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79116036976 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +10:31:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484659.10012 +Linkedid: 1724484648.10007 +Variable: BRIDGEPEER +Value: PJSIP/Megafon_3-00001198 +Device: PJSIP/12 +State: NOT_INUSE +BridgeUniqueid: 237ef964-30be-4754-806a-6e24aba32271 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Cause: 26 +Cause-txt: Answered elsewhere + + +10:31:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aba;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484659.10011 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:31:05 + +Event: V +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ab9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: +Source: 79116036976 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116036976" <79116036976> +DestinationChannel: PJSIP/12-00001199 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484659.10009 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere + + +10:31:05 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724484659.10009 +Linkedid: 1724484648.10007 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10037 + + +10:31:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +10:31:24 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-0000119b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 66ec5243-1236-4952-a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +10:31:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial +Exten: s +Priority: 55 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: ARG2 +Value: 10 + + +10:31:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: ARG5 +Value: + + +10:31:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116036976 +ConnectedLineName: 79116036976 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724484659.10016 +Linkedid: 1724484648.10007 +Variable: RTPAUDIOQOSLOSS +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:31:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Extension: s + + +10:31:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-qu +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484659.10013 +Linkedid: 1724484648.10007 +Variable: MACRO_CONTEXT +Value: +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 297 +LastCall: 1724484684 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: 66ec5243-1236-4952-a7db-4de35a6442d8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:31:24 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000abb;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724484659.10012 +Linkedid: 1724484648.10007 +Cause: 16 +DestChannel: Local/10@from-queue-00000abb;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116036976 +DestConnectedLineName: 79116036976 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724484659.10012 +DestLinkedid: 1724484648.10007 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +TalkTime: 20 +Reason: agent +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 237ef964-30be-4754-806a-6e24aba32271 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing + + +10:31:24 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 79116036976 +Destination: 10 +DestinationContext: ext-local +CallerID: "79116036976" <79116036976> +Channel: PJSIP/Megafon_3-00001198 +DestinationChannel: PJSIP/10-0000119b +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 25 +BillableSeconds: 19 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724484659.10013 +UserField: +UserEvent: refreshcallhistory +Value: ext-queues +Family: refreshcallhistory +ActionID: 10038 +Device: Local/10@from-queue +State: NOT_INUSE +BridgeUniqueid: 237ef964-30be-4754-806a-6e24aba32271 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_CONTEXT + + +10:31:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 791160 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10040 +Source: 79116036976 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116036976" <79116036976> +DestinationChannel: Local/12@from-queue-00000ab9;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724484648.10007 +UserField: + + +10:31:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt + + +10:31:24 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001198 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116036976 +CallerIDName: 79116036976 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724484648.10007 +Linkedid: 1724484648.10007 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10041 +Source: 79116036976 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116036976" <79116036976> +DestinationChannel: Local/10@from-queue-00000abb;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 25 +BillableSeconds: 25 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724484648.10007 +UserField: + + +10:40:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T10 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +10:40:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T10 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +10:46:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +10:46:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724485584.10017 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:46:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724485584. +Linkedid: 1724485584.10017 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-104624 +Variable: __YEAR +Value: 2024 + + +10:46:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:46:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +10:46:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:46:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +10:46:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +10:46:24 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE +Device: PJSIP/Megafon_3 +State: INUSE + + +10:46:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +10:46:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +10:46:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: 2 +Application: AGI +AppData: agi + + +10:46:25 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +CommandId: 1758591502 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +10:46:25 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +CommandId: 567044438 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +10:46:26 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +CommandId: 843081768 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +10:46:26 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +CommandId: 1748481657 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +10:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.100 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +10:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-0000119c + + +10:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-0000119c + + +10:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +10:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: s +Application: Set +AppData: CDR(cnum)=79210277193 +Variable: MACRO_DEPTH +Value: 1 + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79210277193 + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000119c)=TRUE + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724485584.10 +Linkedid: 1724485584.10017 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +10:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +10:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +10:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +10:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 44 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: 194 +Application: Set +AppData: VQ_AANNOUNCE= +Variable: VQ_AANNOUNCE +Value: + + +10:46:34 + +Event: Newext +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 50 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: VQ_MAXWAIT +Value: +Extension: 194 +Application: Set +AppData: VQ_MAXWAIT= + + +10:46:34 + +Event: NewCaller +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485594.10018 +Linkedid: 1724485584.10017 +Variable: QUEUEJOINTIME +Value: 1724485594 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485594.10018 +Linkedid: 1724485584.10017 +Variable: __FROMQUEUEEXTEN +Value: 79210277193 + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485594.10018 +Linkedid: 1724485584.10017 +Variable: __TIMESTR +Value: 20240824-104624 + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: __CWIGNORE +Value: TRUE + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: __REC_STATUS +Value: INITIALIZED + + +10:46:34 + +Event: Newchannel +Privilege: call,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queu +Exten: 13 +Priority: 1 +Uniqueid: 1724485594.10020 +Linkedid: 1724485584.10017 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000abc;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724485594.10018 +LocalOneLinkedid: 1724485584.10017 +LocalTwoChannel: Local/12@from-queue-00000abc;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210277193 +LocalTwoCallerIDName: 79210277193 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724485594.10019 +LocalTwoLinkedid: 1724485584.10017 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000abc;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724485594.10018 +DestLinkedid: 1724485584.10017 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724485594.10020 +Linkedid: 172448558 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724485594.10020 +Linkedid: 1724485584.100 +Variable: __FROM_DID +Value: 79217365096 + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: __SIGNORE +Value: TRUE + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:46:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: __DAY +Value: 24 + + +10:46:35 + +Event: Newchannel +Privilege: call,all +Channel: Local/10@from-queue-00000abe;1 +ChannelState: 0 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000abd;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724485594.10020 +LocalOneLinkedid: 1724485584.10017 +LocalTwoChannel: Local/13@from-queue-00000abd;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210277193 +LocalTwoCallerIDName: 79210277193 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724485594.10021 +LocalTwoLinkedid: 1724485584.10017 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000abd;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724485594.10020 +DestLinkedid: 1724485584.10017 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485594.10022 +Linkedid: 1724485584.10017 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485594.10022 +Linkedid: 1724485584.10017 +Variable: __MOHCLASS +Value: + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485594.10022 +Linkedid: 1724485584.10017 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000119c + + +10:46:35 + +Event: Ne +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: __TIMESTR +Value: 20240824-104624 + + +10:46:35 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000abe;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724485594.10022 +LocalOneLinkedid: 1724485584.10017 +LocalTwoChannel: Local/10@fro + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724485 +Linkedid: 1724485584.10017 +DestChannel: Local/10@from-queue-00000abe;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724485594.10022 +DestLinkedid: 1724485584.10017 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: DB_RESULT +Value: EXTENSION + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: MACRO_CONTEXT +Value: ext-local + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724485594. +Linkedid: 1724485584.10017 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: s +Application: Set +AppData: CHANEXTEN=12 +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724485 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: DB_RESULT +Value: EXTENSION +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?repo + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dia +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724485594.10021 +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79210277193 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-caller +Exten: s +Priority: 12 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: s +Application: GotoIf +AppData: 0?cnum +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79210277193 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 4 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: 10 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: __RINGTIMER +Value: 60 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724485594.10023 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 17244 +Linkedid: 1724485584.10017 +Variable: CHANEXTENCONTEXT +Value: 10@from-queue-00000abe;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000abe;2 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: s +Application: Set +AppData: AMPUSER=79210277193 +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan, +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79210277193 +ConnectedLineName: 79210277193 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724485594.10018 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: RT= + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record- +Exten: s +Priority: 5 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: CALLTYPE +Value: external + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79210277193-20240824-104634-1724485594.10019 +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-chec +Exten: recordcheck +Priority: 22 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: __RECORD_ID +Value: Local/12@from-queue-00000abc;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000abc;2 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79210277193 +ConnectedLineName: 79210277193 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724485594.10020 +Linkedid: 1724485584.10017 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: RT= + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record- +Exten: s +Priority: 5 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: CALLTYPE +Value: external + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79210277193-20240824-104634-1724485594.10021 +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-chec +Exten: recordcheck +Priority: 22 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000abd;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000abd;2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG2 +Value: + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +10:46:35 + +Event: VarSet +Privilege: +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: +AppData: 0?screen,1() + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724485594.1002 +Linkedid: 1724485584.10017 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: dstring +Application: Set +AppData: DEVICES=13 +Variable: DEVICES +Value: 13 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 17244 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792102771 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: VarSet +Privilege: di +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +10:46:35 + +Event: Var +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATU + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79210277193-20240824-104634-1724485594.10023.wav,abi(), + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000abe;2 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Goto +AppData: 1?next1 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: DB_RESULT +Value: PJSIP/12 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +10:46:35 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip +Variable: DSTRING +Value: PJSIP/12/sip + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 19 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 38 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 7921027719 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: +Linkedid: 1724485584.10017 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: ANSWEREDTIME +Value: + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: ARG3 +Value: 10 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724485594 +Linkedid: 1724485584.10017 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DB_RESULT +Value: 10 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: dstring +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79210277193 +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:46:35 + +Event: VarS +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.1 +Linkedid: 1724485584.10017 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) +Variable: MACRO_DEPTH +Value: 2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: RINGTIME_MS +Value: + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +10:46:35 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/12-0000119d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: s +Priority: 55 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: PROGRESSTIME_MS +Value: + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000119d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724 +Linkedid: 1724485584.10017 +Variable: __MON_FMT +Value: wav + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485594.10024 +Linkedid: 1724485584.10017 +Variable: __FROMQ +Value: true + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000119d +ChannelState: 0 +ChannelStateDesc: D +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485594.10024 +Linkedid: 1724485584.10017 +Variable: __REVERSAL_REJECT +Value: FALSE + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000119d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210277193 +ConnectedLineName: 79210277193 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724485594.10024 +Linkedid: 1724485584.10017 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485594.10025 +Linkedid: 1724485584.10017 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485594.10025 +Linkedid: 1724485584.10017 +Variable: __FROMEXTEN +Value: 79210277193 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-interna +Exten: s +Priority: 1 +Uniqueid: 1724485594.10025 +Linkedid: 1724485584.10017 +Variable: __FROMQ +Value: true + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000119e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 172448 +Linkedid: 1724485584.10017 +Variable: __REVERSAL_REJECT +Value: FALSE + + +10:46:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000119e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210277193 +ConnectedLineName: 79210277193 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: +Linkedid: 1724485584.10017 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000119f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485594.10026 +Linkedid: 1724485584.10017 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000119f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485594.10026 +Linkedid: 17 +Variable: __FROMEXTEN +Value: 79210277193 + + +10:46:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000119f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485594.10026 +Linkedid: 1724485584.10017 +Variable: __QC_CONFIRM +Value: 0 + + +10:46:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000119f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485594.10026 +Linkedid: 1724485584.10017 +Variable: __RINGINGSENT +Value: TRUE + + +10:46:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000119f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79210277193 +ConnectedLineName: 79210277193 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724485594.10026 +Linkedid: 1724485584.10017 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +10:46:36 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-queue-00000abd;1 +ChannelState: 5 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-0000119f +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724485594.10026 +DestLinkedid: 1724485584.10017 +DialString: 13/sip + + +10:46:36 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +DestChannel: PJSIP/10-0000119e +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724485594.10025 +DestLinkedid: 1724485584.10017 +DialString: 10/sip + + +10:46:36 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +DestChannel: Local/12@from-queue-00000abc;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485594.10018 +DestLinkedid: 1724485584.10017 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE + + +10:46:37 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/13-0000119f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79210277193 +ConnectedLineName: 79210277193 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724485594.10026 +Linkedid: 1724485584.10017 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING + + +10:46:37 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 418 +LastCall: 1724484538 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: RINGTIME_MS +Value: 3025 +DestChannel: Local/13@from-queue-00000abd;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485594.10020 +DestLinkedid: 1724485584.10017 +DialStatus: RINGING + + +10:46:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000119d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210277193 +ConnectedLineName: 79210277193 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724485594.10024 +Linkedid: 1724485584.10017 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +10:46:38 + +Event: DialState +Privilege: call,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: RINGTIME_MS +Value: 3919 +DestChannel: Local/12@from-queue-00000abc;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485594.10018 +DestLinkedid: 1724485584.10017 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:46:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000119e +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210277193 +ConnectedLineName: 79210277193 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724485594.10025 +Linkedid: 1724485584.10017 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +10:46:39 + +Event: DialState +Privilege: call,all +Device: PJSIP/10 +State: RINGING +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: RINGTIME_MS +Value: 4345 +DestChannel: Local/10@from-queue-00000abe;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485594.10022 +DestLinkedid: 1724485584.10017 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 297 +LastCall: 1724484684 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:47:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001750;avgrxjitter=000.000158;stdevrxjitter=000.000168;mintxjitter=000.001625;maxtxjitter=000.003250;avgtxjitter=000.002161;stdevtxjitter=000.000512; + + +10:47:04 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000168; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; +DestChannel: Local/10@from-queue-00000abe;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485594.10020 +DestLinkedid: 1724485584.10017 +DialStatus: CANCEL + + +10:47:04 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000abd;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79210277193 +ConnectedLineName: 79210277193 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724485594.10020 +Linkedid: 1724485584.10017 +DestChannel: Local/13@from-queue-00000abd;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485594.10020 +DestLinkedid: 1724485584.10017 +DialStatus: CANCEL +Cause: 0 +Cause-txt: Unknown +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:47:04 + +Event: QueueCallerAbandon +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +DestChannel: PJSIP/12-0000119d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724485594.10024 +DestLinkedid: 1724485584.10017 +DialStatus: CANCEL +Cause: 0 +Cause-txt: Unknown +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: DIALSTATUS +Value: CANCEL + + +10:47:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO_CONTEXT +Value: ext-local +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Cause: 16 + + +10:47:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG4 +Value: + + +10:47:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724485594.10019 +Linkedid: 1724485584.10017 +Variable: MACRO +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:47:04 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +DestChannel: PJSIP/13-0000119f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru + + +10:47:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_CONTEXT +Value: ext-local +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Source: 79210277193 +Destination: 12 +DestinationContext: ext-local +CallerID: "79210277193" <79210277193> +DestinationChannel: PJSIP/12-0000119d +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 29 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724485594.10019 +UserField: + + +10:47:04 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_PRIORITY +Value: + + +10:47:04 + +Event: Newexten +Privilege: dialplan,all +Device: Local/10@from-queue +State: NOT_INUSE +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: +Priority: 1 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +10:47:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: ARG3 +Value: 0 +DestChannel: PJSIP/10-0000119e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210277193 +DestConnectedLineName: 79210277193 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724485594.10025 +DestLinkedid: 1724485584.10017 +DialStatus: CANCEL +Cause: 16 +Cause-txt: Normal Clearing + + +10:47:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_EXTEN +Value: + + +10:47:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Cause-txt: Normal Clearing + + +10:47:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 1 +Uniqueid: 1724485594.10023 +Linkedid: 1724485584.10017 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/10 +State: NOT_INUSE +Extension: s +Application: GotoIf +AppData: 1?theend +Queue: 195 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 297 +LastCall: 1724484684 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:47:05 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 297 +LastCall: 1724484684 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE + + +10:47:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000abd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724 +Linkedid: 1724485584.10017 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Source: 79210277193 +Destination: 13 +DestinationContext: ext-local +CallerID: "79210277193" <79210277193> +DestinationChannel: PJSIP/13-0000119f +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 29 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724485594.10021 +UserField: + + +10:47:05 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000abe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724485594.10021 +Linkedid: 1724485584.10017 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10043 +Source: 79210277193 +Destination: 10 +DestinationContext: ext-local +CallerID: "79210277193" <79210277193> +DestinationChannel: PJSIP/10-0000119e +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 29 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724485594.10023 +UserField: + + +10:47:05 + +Event: VarSet +Privilege: dialplan,all +Device: Local/10@from-queue +State: NOT_INUSE +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10044 +Source: 79210277193 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79210277193" <79210277193> +DestinationChannel: Local/12@from-queue-00000abc;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 40 +BillableSeconds: 40 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724485584.10017 +UserField: +Variable: MACRO_PRIORITY + + +10:47:05 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-0000119c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210277193 +CallerIDName: 79210277193 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724485584.10017 +Linkedid: 1724485584.10017 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000168; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Source: 79210277193 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79210277193" <79210277193> +DestinationChannel: Local/10@from-queue-00000abe;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 29 +BillableSeconds: 29 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 172 +UserField: + + +10:47:05 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/MEGAFON_3 +ActionID: 10051 + + +10:47:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +10:47:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724485635.10027 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:47:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724485635. +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-104715 +Variable: __YEAR +Value: 2024 + + +10:47:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:47:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +10:47:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:47:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +10:47:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +10:47:15 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +10:47:15 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +10:47:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +10:47:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +10:47:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: 2 +Application: AGI +AppData: agi + + +10:47:17 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +CommandId: 188111196 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +10:47:17 + +Event: AGIExecStart +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +CommandId: 52480758 +Command: VERBOSE "Goto + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: +Linkedid: 1724485635.10027 +CommandId: 1435205436 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: Set +AppData: DEVICE_STATE(Custom + + +10:47:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724485635.10027 +Linkedid: 1724485 +Extension: 194 +Application: Macro +AppData: user-callerid, +Variable: MACRO_DEPTH +Value: 1 + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-000011a0 + + +10:47:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=79506823270 + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 795 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: AMPUSER= +Variable: AMPUSER +Value: + + +10:47:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795068 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 1 + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TTL=64 + + +10:47:17 + +Event: Newexten +Privilege: dialplan,all +Channel: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +10:47:17 + +Event: Newexten +Privilege: dialplan, +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: MACRO_PRIORITY +Value: +Extension: 194 +Application: Answer +AppData: + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/Megafon_3-000011a0) + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: MacroExit +AppData: + + +10:47:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: VQ_AINFO +Value: +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare + + +10:47:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: 194 +Application: Set +AppData: QRINGOPTS=R +Variable: QRINGOPTS +Value: R + + +10:47:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +10:47:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +10:47:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +10:47:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: QMOH +Value: + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: 194 +Application: Set +AppData: QUEUEJOINT +Variable: QUEUENUM +Value: 194 + + +10:47:26 + +Event: Va +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485646.10028 +Linkedid: 1724485635.10027 +Variable: __SIGNORE +Value: TRUE +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485646.10028 +Linkedid: 1724485635.10027 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485646.10028 +Linkedid: 1724485635.10027 +Variable: __DAY +Value: 24 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: __NODEST +Value: 194 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: __MOHCLASS +Value: + + +10:47:26 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000abf;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from +Exten: 13 +Priority: 1 +Uniqueid: 1724485646.10030 +Linkedid: 1724485635.10027 +DestChannel: Local/12@from-queue-00000abf;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724485646.10028 +DestLinkedid: 1724485635.10027 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724485646.10030 +Linkedid: 1724485635.10027 +Variable: __TTL +Value: 64 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724485646.10030 +Linkedid: 1724485635.10027 +Variable: __YEAR +Value: 2024 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: __QCONTEXT +Value: 0 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: __RINGINGSENT +Value: TRUE + + +10:47:26 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:47:26 + +Event: NewCallerid +Privilege: call,all +LocalOneChannel: Local/13@from-queue-00000ac0;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724485646.10030 +LocalOneLinkedid: 1724485635.10027 +LocalTwoChannel: Local/13@from-queue-00000ac0;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79506823270 +LocalTwoCallerIDName: 79506823270 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724485646.10031 +LocalTwoLinkedid: 1724485635.10027 +Context: from-queue +Exten: 10 +LocalOptimization: No +Channel: Local/10@from-queue-00000ac1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineName: +Language: en +AccountCode: +Priority: 1 +Uniqueid: 1724485646.10032 +Linkedid: 1724485635.10027 +DestChannel: Local/13@from-queue-00000ac0;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724485646.10030 +DestLinkedid: 1724485635.10027 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485646.10032 +Linkedid: 1724485635.10027 +Variable: __FROMQUEUEEXTEN +Value: 79506823270 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485646.10032 +Linkedid: 1724485635.10027 +Variable: __TIMESTR +Value: 20240824-104715 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485646 +Linkedid: 1724485635.10027 +Variable: __CWIGNORE +Value: TRUE + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485646.10033 +Linkedid: 172448 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:47:26 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: QAGENT +Value: 12 +LocalOneChannel: Local/10@from-queue-00000ac1;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724485646.10032 +LocalOneLinkedid: 1724485635.10027 +LocalTwoChannel: Local/10@from-queue-00000ac1;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79506823270 +LocalTwoCallerIDName: 79506823270 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724485646.10033 +LocalTwoLinkedid: 1724485635.10027 +LocalOptimization: No +Extension: 12 +Application: Set +AppData: __FROMQ=true +DestChannel: Local/10@from-queue-00000ac1;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485646.10032 +DestLinkedid: 1724485635.10027 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: 12 +Priority: 1 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +DestChannel: Local/10@from-queue-00000ac1;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724485646.10032 +DestLinkedid: 1724485635.10027 +DialString: Local/10@from-queue/n +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +Variable: DB_RESULT +Value: 0 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG1 +Value: novm + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: AMPUSER=79506823270 +Variable: MACRO_DEPTH +Value: 2 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-c +Exten: s +Priority: 10 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +10:47:26 + +Event: Newexten +Privilege: di +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: fro +Exten: s +Priority: 52 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79506823270 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 7950 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: DB_RESULT +Value: EXTENSION +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7950682327 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724485646.10031 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79506823270 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724485 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: MACRO_DEPTH +Value: 2 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +10:47:26 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ac1;2 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: HOTDESKEXTEN +Value: 10@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +10:47:26 + +Event: VarSet +Privilege: +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: ARG1 +Value: novm + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MA +Value: 12 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) +Variable: LOCAL(ARG2) +Value: 12 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub- +Exten: s +Priority: 3 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: NOW +Value: 1724485646 +Extension: s +Application: Set +AppData: NOW=1724485646 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +10:47:26 + +Event: Newexten +Privilege: +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) +Variable: LOCAL(ARG1) +Value: yes + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79506823270) +Variable: RECFROMEXTEN +Value: 79506823270 + + +10:47:26 + +Event: VarSet +Privilege: dialpl +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79506823270-20240824-104726-1724485646.10029.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-12-79506823270-20240824-104726-1724485646.10029.wav + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +10:47:26 + +Event: Newexten +Privilege: +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: recordcheck +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_CONTEXT +Value: macro- +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724485646.10029 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: DB_RESULT +Value: PJSIP/12 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +10:47:26 + +Event: V +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: s +Priority: 34 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: CDR(cnum)=79506823270 +Variable: MACRO_DEPTH +Value: 2 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: Rin +Variable: MACRO_DEPTH +Value: 1 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: DB_RESULT +Value: +Extension: s +Application: Set +AppData: __PICKUPMARK=10 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_1 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: ARG1 +Value: +Extension: s +Application: Set +AppData: RT= + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Exe +AppData: + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724485646. +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: CALLTYPE +Value: external + + +10:47:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +10:47:26 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79506823270-20240824-104726-1724485646.10033 +Variable: MACRO_DEPTH +Value: 1 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000ac1;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000ac1;2 + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-104726 + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-c +Exten: s +Priority: 10 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: DB_RESULT +Value: yes + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +10:47:27 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: RECFROMEXTEN +Value: 79506823270 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79506823270) + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79506823270) + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.1002 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: DB_RESULT +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: dstring +Priority: 11 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: PJSIP/10/sip + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +10:47:27 + +Event: VarS +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: CWRING +Value: +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79506823270-20240824-104726-1724485646.10031 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724485646.10033 +Linkedid: 172448 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: ANSWEREDTIME +Value: + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: DIALEDTIME +Value: + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=13) + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485646.10034 +Linkedid: 1724485635.10027 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: EXTHASCW= + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485646.10034 +Linkedid: 1724485635.10027 +Variable: __TIMESTR +Value: 20240824-104726 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485646.10034 +Linkedid: 1724485635.10027 +Variable: __FROMQ +Value: true + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485646.10034 +Linkedid: 1724485635.10027 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: 12 +Priority: 1 +Uniqueid: 1724485646.10034 +Linkedid: 1724485635.10027 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011a1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724485646.10034 +Linkedid: 1724485635.10027 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011a2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485646.10035 +Linkedid: 1724485635.10027 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: __CWIGNORE +Value: TRUE + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011a2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011a2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from- +Exten: dstring +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: dstring +Application: Set +AppData: DSTRING= + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +DestChannel: PJSIP/12-000011a1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724485646.10034 +DestLinkedid: 1724485635.10027 +DialString: 12/sip +Variable: DB_RESULT +Value: dontcare + + +10:47:27 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.100 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: Local/12@from-queue +State: INUSE + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011a2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: ITER +Value: 1 +Extension: dstring +Application: Set +AppData: ITER=1 +DestChannel: Local/12@from-queue-00000abf;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485646.10028 +DestLinkedid: 1724485635.10027 +DialStatus: RINGING + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: func-apply-sipheaders_s_4 +Value: + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724485646.10031 +Linkedid: 1 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79506823270 + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 795068 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;v + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +10:47:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_D +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.1 +Linkedid: 1724485635.10027 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: RINGTIME +Value: + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485646.10036 +Linkedid: 1724485635.10027 +Variable: DIALEDPEERNUMBER +Value: 13/sip +DestChannel: Local/10@from-queue-00000ac1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485646.10032 +DestLinkedid: 1724485635.10027 +DialString: 10/sip +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485646.10036 +Linkedid: 1724485635.10027 +Variable: __TIMESTR +Value: 20240824-104726 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485646.10036 +Linkedid: 1724485635.10027 +Variable: __QC_CONFIRM +Value: 0 + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724485646.10036 +Linkedid: 1724485635.10027 +Variable: __RINGINGSENT +Value: TRUE + + +10:47:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724485646.10036 +Linkedid: 1724485635.10027 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +10:47:27 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-queue-00000ac0;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79506823270 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-000011a3 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724485646.10036 +DestLinkedid: 1724485635.10027 +DialString: 13/sip + + +10:47:27 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +DestChannel: Local/13@from-queue-00000ac0;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485646.10030 +DestLinkedid: 1724485635.10027 +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE + + +10:47:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011a2 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724485646.10035 +Linkedid: 1724485635.10027 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +10:47:29 + +Event: DialState +Privilege: call,all +Device: PJSIP/10 +State: RINGING +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: RINGTIME_MS +Value: 3520 +DestChannel: Local/10@from-queue-00000ac1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485646.10032 +DestLinkedid: 1724485635.10027 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 297 +LastCall: 1724484684 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:47:30 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 3824 +DestChannel: Local/12@from-queue-00000abf;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485646.10028 +DestLinkedid: +DialStatus: RINGING + + +10:47:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011a3 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724485646.10036 +Linkedid: 1724485635.10027 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +10:47:30 + +Event: DialState +Privilege: call,all +Device: PJSIP/13 +State: RINGING +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: RINGTIME_MS +Value: 4510 +DestChannel: Local/13@from-queue-00000ac0;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485646.10030 +DestLinkedid: 1724485635.10027 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 418 +LastCall: 1724484538 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:47:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724485646.10035 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/10 +State: INUSE + + +10:47:32 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 297 +LastCall: 1724484684 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-000011a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506823270 +ConnectedLineName: 795068 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724485646.10035 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +10:47:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724485646.10035 +Linkedid: 1724485635.10027 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +10:47:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724485646.10035 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000011a0)= + + +10:47:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724485646.10035 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +10:47:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 172 +Linkedid: 1724485635.10027 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-000011a2 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724485646.10035 +DestLinkedid: 1724485635.10027 +DialStatus: ANSWER +BridgeUniqueid: fa9b31e9-854e-4b65-bf31-11edcb7a4f41 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE + + +10:47:32 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: fa9b31e9-854e-4b65-bf31-11edcb7a4f41 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Variable: BRIDGEPVTCALLID +Value: 2efc08fb-2dc4-48a3-b608-a81b68487046 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000ac1;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485646.10032 +DestLinkedid: + + +10:47:32 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724485646.10028 +Linkedid: 1724485635.10027 +DestChannel: Local/12@from-queue-00000abf;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485646.10028 +DestLinkedid: 1724485635.10027 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:47:32 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/Megafon_3-000011a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724485635.10027 +Linkedid: 1724485635.10027 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: Local/10@from-queue-00000ac1;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724485646.10032 +DestLinkedid: 1724485635.10027 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +RingTime: 6 +BridgeUniqueid: fdb7ecd2-f7a7-4721-9400-2a9eef83ebeb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:47:32 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: fdb7ecd2-f7a7-4721-9400-2a9eef83ebeb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +DestChannel: PJSIP/12-000011a1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724485646.10034 +DestLinkedid: 1724485635.10027 +DialStatus: CANCEL + + +10:47:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506 +CallerIDName: 79506823270 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: ARG3 +Value: + + +10:47:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724485646.10029 +Linkedid: 1724485635.10027 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:47:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: 79506823270 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: DIALSTATUS +Value: CANCEL +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere +DestChannel: PJSIP/13-000011a3 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79506823270 +DestConnectedLineName: 79506823270 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724485646.10036 +DestLinkedid: 1724485635.10027 +DialStatus: CANCEL + + +10:47:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: ARG2 +Value: + + +10:47:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:47:32 + +Event: Cdr +Privilege: cdr,all +Channel: Local/12@from-queue-00000abf;2 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724485646.10036 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79506823270 +Destination: 12 +DestinationContext: ext-local +CallerID: "79506823270" <79506823270> +DestinationChannel: PJSIP/12-000011a1 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 6 +BillableSeconds: 0 + + +10:47:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE + + +10:47:32 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724485646.10031 +Linkedid: 1724485635.10027 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +Source: 79506823270 +Destination: 13 +DestinationContext: ext-local +CallerID: "79506823270" <79506823270> +DestinationChannel: PJSIP/13-000011a3 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724485646.10031 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10053 +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint + + +10:47:32 + +Event: UserEvent +Privilege: user,all +Exten: 13 +Context: ext-local +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 418 +LastCall: 1724484538 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/13@FROM-QUEUE +ActionID: 10057 + + +10:48:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724485646.10032 +Linkedid: 1724485635.10027 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000416; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=081.473499; stdevtxmes=015.368406; + + +10:48:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: fa9b31e9-854e-4b65-bf31-11edcb7a4f41 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Variable: DIALEDTIME +Value: 77 + + +10:48:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 0 + + +10:48:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:48:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: +Value: 1 +Source: 79506823270 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79506823270" <79506823270> +DestinationChannel: Local/12@from-queue-00000abf;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724485635.10027 +UserField: +Extension: s +Application: GotoIf +AppData: 1?theend + + +10:48:43 + +Event: Newexten +Privilege: dialplan,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 1 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724485646.10035 +Linkedid: 1724485635.10027 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +BridgeUniqueid: fa9b31e9-854e-4b65-bf31-11edcb7a4f41 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:48:43 + +Event: VarSet +Privilege: dialplan,al +Channel: PJSIP/10-000011a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79506823270 +ConnectedLineName: 79506823270 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724485646.10035 +Linkedid: 1724485635.10027 +Variable: RTPAUDIOQOS +Value: ssrc=1303945435;themssrc=727516598;lp=0;rxjitter=0.000000;rxcount=3541;txjitter=0.001250;txcount=3562;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Cause: 16 +Cause-txt: Normal Clearing + + +10:48:43 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_DEPTH +Value: 0 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: + + +10:48:43 + +Event: Cdr +Privilege: cdr,all +Channel: Local/10@from-queue-00000ac1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79506823270 +CallerIDName: 79506823270 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724485646.10033 +Linkedid: 1724485635.10027 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 298 +LastCall: 1724485723 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Device: Local/10@from-queue +State: NOT_INUSE +Source: 79506823270 +Destination: 10 +DestinationContext: ext-local +CallerID: "79506823270" <79506823270> +DestinationChannel: PJSIP/10-000011a2 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 10 +Duration: 77 +BillableSeconds: 71 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724485646.10033 +UserField: + + +10:48:43 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/10@FROM-QUEUE +ActionID: 10061 + + +10:53:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +10:53:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724486027.10037 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +10:53:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724486027. +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-105347 +Variable: __YEAR +Value: 2024 + + +10:53:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +10:53:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +10:53:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +10:53:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +10:53:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +10:53:47 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +10:53:47 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +10:53:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 14 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: __REVERSAL_REJECT +Value: FALSE + + +10:53:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +10:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +10:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 2 +Application: AGI +AppData: agi + + +10:53:48 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +CommandId: 1630840840 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +10:53:49 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +CommandId: 1639285031 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +10:53:49 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +CommandId: 156696917 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +10:53:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.100 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +10:53:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-000011a4 + + +10:53:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-000011a4 + + +10:53:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +10:53:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: CDR(cnum)=79110417177 +Variable: MACRO_DEPTH +Value: 1 + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79110417177 + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000011a4)=TRUE + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724486027.10 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +10:53:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +10:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +10:53:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +10:53:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 47 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 194 +Application: ExecIf +AppData: 0?Set(__MOHCLASS= +Variable: VQ_MOH +Value: + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 194 +Application: +AppData: QUEUEJOINTIME=1724486038 +Variable: QUEUEJOINTIME +Value: 1724486038 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: RINGING +Channel: Local/12@from-queue-00000ac2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724486038.10038 +Linkedid: 1724486027.10037 +Queue: 194 +Position: 1 +Count: 1 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724486038.10038 +Linkedid: 1724486027.10037 +Variable: __REVERSAL_REJECT +Value: FALSE + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;1 +ChannelState: 0 +ChannelStateDesc: Dow +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724486038.10038 +Linkedid: 1724486027.10037 +Variable: __DIRECTION +Value: + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000011a4 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ac2;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724486038.10038 +LocalOneLinkedid: 1724486027.10037 +LocalTwoChannel: Local/12@from-queue-00000ac2;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79110417177 +LocalTwoCallerIDName: 79110417177 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724486038.10039 +LocalTwoLinkedid: 1724486027.10037 +LocalOptimization: No + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: +Priority: 1 +Uniqueid: 1724486038.10040 +Linkedid: 1724486027.10037 +DestChannel: Local/12@from-queue-00000ac2;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724486038.10038 +DestLinkedid: 1724486027.10037 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 17 +Linkedid: 1724486027.10037 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724486038.10040 +Linkedid: 1724486027.10037 +Variable: __REC_STATUS +Value: + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: __FROM_DID +Value: 79217365096 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: __DIRECTION +Value: +Extension: 12 +Application: Set +AppData: QAGENT=12 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +LocalOneChannel: Local/13@from-queue-00000ac3;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724486038.10040 +LocalOneLinkedid: 1724486027.10037 +LocalTwoChannel: Local/13@from-queue-00000ac3;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79110417177 +LocalTwoCallerIDName: 79110417177 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724486038.10041 +LocalTwoLinkedid: 1724486027.10037 +Context: from-queue +Exten: 12 +LocalOptimization: No +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Priority: 3 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: 12 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true +DestChannel: Local/13@from-queue-00000ac3;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724486038.10040 +DestLinkedid: 1724486027.10037 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724486038.10042 +Linkedid: 1724486027.10037 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +Variable: __SIGNORE +Value: TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +Variable: DB_RESULT +Value: 0 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724486038.10042 +Linkedid: 1724486027.10037 +Variable: __FROM_DID +Value: 79217365096 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724486038.10042 +Linkedid: 1724486027.10037 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: ARG3 +Value: 0 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724486038.10043 +Linkedid: 17244 +Variable: __TIMESTR +Value: 20240824-105347 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000ac4;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724486038.10042 +LocalOneLinkedid: 1724486027.10037 +LocalTwoChannel: Local/10@from-queue-00000ac4;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79110417177 +LocalTwoCallerIDName: 79110417177 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724486038.10043 +LocalTwoLinkedid: 1724486027.10037 +LocalOptimization: No +Extension: s +Application: Macro +AppData: user-callerid, + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +DestChannel: Local/10@from-queue-00000ac4;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724486038.10042 +DestLinkedid: 1724486027.10037 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000ac2;2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79110417177 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 10 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: GotoIf +AppData: 1?continue + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: 13 +Application: Set +AppData: QAGENT=13 +Variable: QAGENT +Value: 13 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: DB_RESULT +Value: 0 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 791 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: ARG2 +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79110417177 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: 10 +Application: Set +AppData: QAGENT=10 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 +Variable: DB_RESULT +Value: 0 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG1 +Value: novm + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: CHAN +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79110417177 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724486038.10043 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: CDR(cnam)=79110417177 +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: ext-local + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724486038.10039 +Linkedid: 17244 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: __TIMESTR +Value: 20240824-105358 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-105358 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_D +Value: 1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: LOCAL(ARG3) +Value: 12 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79110417177) + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: recordcheck +Application: Set +AppData: 2024/08/24/external-12-79110417177-20240824-105358-1724486038.10039.wav,abi(), +Variable: MACRO_DEPTH +Value: 1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79110417177-20240824-105358-1724486038.10039.wav + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: +AppData: 0?Set(__EXTTOCALL=12) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724486 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 7911041 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=2) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: PJSIP/12 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: HhTtrM(auto-blkvm) + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724486038.10040 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724486038.10042 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: CHANNEL(language)=ru + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: RT= +Variable: DB_RESULT +Value: + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724486038. +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: __TIMESTR +Value: 20240824-105358 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-105358 + + +10:53:58 + +Event: VarSet +Privilege: dialpl +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +10:53:58 + +Event: VarSet +Privilege: +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: LOCAL(ARG3) +Value: 10 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-105358 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791104 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 17244860 +Linkedid: 1724486027.10037 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: ANSWEREDTIME_MS +Value: + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: recordcheck +Application: Goto +AppData: star +Variable: MACRO_DEPTH +Value: 1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79110417177-20240824-105358-1724486038.10043 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: ARGC +Value: +Extension: exten +Application: GotoIf +AppData: 1?callee + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: LOCAL(ARG2) +Value: external +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: ARG3 +Value: 10 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: s +Exten: recordcheck +Priority: 10 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79110417177) +Variable: MACRO_DEPTH +Value: 1 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79110417177-20240824-105358-1724486038.10041.wav + + +10:53:58 + +Event: Var +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 17244860 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 7911041717 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: THISDIAL +Value: PJSIP/13/sip +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Go +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_CONTEXT +Value: macro-dial-one + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hoo +Exten: s +Priority: 1 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011a5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724486038.10044 +Linkedid: 1724486027.10037 +Variable: __RECORD_ID +Value: Local/12@from-queue-00000ac2;2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011a5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724486038.10044 +Linkedid: 1724486027.10037 +Variable: __PICKUPMARK +Value: 12 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011a5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724486038.10044 +Linkedid: 1724486027.10037 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Meg + + +10:53:58 + +Event: VarSet +Privilege: dialp +Channel: PJSIP/12-000011a5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724486038.10044 +Linkedid: 1724486027.10037 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011a5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724486038.10044 +Linkedid: 1724486027.10037 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: 0 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= +Variable: MACRO_DEPTH +Value: 2 + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +10:53:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +10:53:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: THISDIAL +Value: PJSIP/10/sip +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +10:53:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +10:53:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +10:53:59 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: PROGRESSTIME_MS +Value: +DestChannel: Local/12@from-queue-00000ac2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79110417177 +DestConnectedLineName: 79110417177 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724486038.10038 +DestLinkedid: 1724486027.10037 +DialString: 12/sip +Device: Local/12@from-queue +State: INUSE +DialStatus: RINGING + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011a6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724486038.10045 +Linkedid: 1724486027.10037 +Variable: __CALLING +Value: allowed_not_screened + + +10:53:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011a6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724486038.10045 +Linkedid: 1724486027.10037 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/10-000011a6 + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011a6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724486038 +Linkedid: 1724486027.10037 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Variable: __MON +Value: YES + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Variable: __RINGTIMER +Value: 60 + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +10:53:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +10:53:59 + +Event: DialBegin +Privilege: call,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911041717 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +10:53:59 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +DestChannel: PJSIP/13-000011a7 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79110417177 +DestConnectedLineName: 79110417177 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724486038.10046 +DestLinkedid: 1724486027.10037 +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE +DialString: 13/sip + + +10:54:01 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3367 +Device: PJSIP/12 +State: RINGING +DestChannel: Local/12@from-queue-00000ac2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79110417177 +DestConnectedLineName: 79110417177 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724486038.10038 +DestLinkedid: 1724486027.10037 +DialStatus: RINGING + + +10:54:01 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:54:01 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3705 +Device: PJSIP/10 +State: RINGING +DestChannel: Local/10@from-queue-00000ac4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79110417177 +DestConnectedLineName: 79110417177 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724486038.10042 +DestLinkedid: +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 298 +LastCall: 1724485723 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:54:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +10:54:02 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 53 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: RINGTIME_MS +Value: 4338 +DestChannel: Local/13@from-queue-00000ac3;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79110417177 +DestConnectedLineName: 79110417177 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724486038.10040 +DestLinkedid: 1724486027.10037 +DialStatus: RINGING +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 418 +LastCall: 1724484538 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +10:54:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/13 +State: INUSE + + +10:54:05 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 418 +LastCall: 1724484538 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/13-000011a7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 791104 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +10:54:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +10:54:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000011a4)= + + +10:54:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +10:54:05 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000ac3;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: from-queu +Exten: 194 +Priority: 1 +Uniqueid: 1724486038.10040 +Linkedid: 1724486027.10037 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-000011a7 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79110417177 +DestConnectedLineName: 79110417177 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724486038.10046 +DestLinkedid: 1724486027.10037 +DialStatus: ANSWER + + +10:54:05 + +Event: HangupRequest +Privilege: call,all +Device: Local/13@from-queue +State: INUSE +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: 194 +Priority: 53 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +DestChannel: Local/12@from-queue-00000ac2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79110417177 +DestConnectedLineName: 79110417177 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724486038.10038 +DestLinkedid: 1724486027.10037 +DialStatus: CANCEL + + +10:54:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: ARG5 +Value: +BridgeUniqueid: da617e63-e714-4fa8-b416-941d595d71a2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +10:54:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +10:54:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 791 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: ARG2 +Value: 10 +Extension: s +Application: GotoIf +AppData: 1?theend +DestChannel: PJSIP/10-000011a6 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79110417177 +DestConnectedLineName: 79110417177 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724486038.10045 +DestLinkedid: 1724486027.10037 +DialStatus: CANCEL + + +10:54:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724486038.10044 +Linkedid: 1724486027.10037 +Variable: ARG4 +Value: +Cause: 26 +Cause-txt: Answered elsewhere + + +10:54:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724486038.10043 +Linkedid: 1 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Device: Local/10@from-queue +State: NOT_INUSE + + +10:54:05 + +Event: Cdr +Privilege: cdr,all +Channel: Local/10@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Source: 79110417177 +Destination: 10 +DestinationContext: ext-local +CallerID: "79110417177" <79110417177> + + +10:54:05 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 298 +LastCall: 1724485723 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/10@from-queue-00000ac4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 10 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724486038.10043 +Linkedid: 1724486027.10037 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: + + +10:54:05 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000ac2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724486038.10039 +Linkedid: 1724486027.10037 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +Variable: MACRO_PRIORITY +Value: +BridgeUniqueid: 1c9ee91b-c92a-4879-b0bc-b8babd907ac3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: Hangup +AppData: +Source: 79110417177 +Destination: 12 +DestinationContext: ext-local +CallerID: "79110417177" <79110417177> +DestinationChannel: PJSIP/12-000011a5 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 10 +AnswerTime: +EndTime: 2024-08-24 10 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724486038.10039 +UserField: + + +10:54:05 + +Event: BridgeEnter +Privilege: call,all +Device: Local/12@from-queue +State: NOT_INUSE +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: da617e63-e714-4fa8-b416-941d595d71a2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10065 + + +10:54:05 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10067 + + +10:54:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001750;avgrxjitter=000.001312;stdevrxjitter=000.000155;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +10:54:59 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/13-000011a7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000155; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +10:54:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724486038.10041 +Linkedid: +Variable: ANSWEREDTIME_MS +Value: 54384 +BridgeUniqueid: 1c9ee91b-c92a-4879-b0bc-b8babd907ac3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +10:54:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724486 +Linkedid: 1724486027.10037 +Variable: MACRO_PRIORITY +Value: 3 + + +10:54:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724486038.10041 +Linkedid: 1724486027.10037 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +10:54:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011a7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724486038.10046 +Linkedid: 1724486 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +10:54:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 791104171 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724486038.10046 +Linkedid: 1724486027.10037 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10068 + + +10:54:59 + +Event: Hangup +Privilege: call,all +Channel: Local/13@from-queue-00000ac3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79110417177 +ConnectedLineName: 79110417177 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724486038.10040 +Linkedid: 1724486027.10037 +Variable: BRIDGEPVTCALLID +Value: +Extension: s +Application: Hangup +AppData: +Cause: 16 + + +10:54:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: BRIDGEPEER +Value: +BridgeUniqueid: da617e63-e714-4fa8-b416-941d595d71a2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 7 +TalkTime: 54 +Reason: agent +Extension: h +Application: Macro +AppData: hangupcall, + + +10:54:59 + +Event: Cdr +Privilege: cdr,all +Channel: Local/13@from-queue-00000a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10070 +Device: Local/13@from-queue +State: NOT_INUSE +Source: 79110417177 +Destination: 13 +DestinationContext: ext-local +CallerID: "79110417177" <79110417177> + + +10:55:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOS +Value: ssrc=166027238;themssrc=983464;lp=0;rxjitter=0.001375;rxcount=3596;txjitter=0.000250;txcount=3547;rlp=0;rtt=0.000000;rxmes=85.367289;txmes=85.367289 + + +10:55:00 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-000011a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79110417177 +CallerIDName: 79110417177 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724486027.10037 +Linkedid: 1724486027.10037 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79110417177 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79110417177" <79110417177> +DestinationChannel: Local/10@from-queue-00000ac4;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 10 +AnswerTime: 2024-08-24 10 +EndTime: 2024-08-24 +Duration: 61 +BillableSeconds: 61 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724486027.10037 +UserField: +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10071 + + +10:59:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T10 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +10:59:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T10 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +11:11:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: sub-record-check,s,1(in,79217365596,dontcare) + + +11:11:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __YEA +Value: 08 + + +11:11:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: __MON_FMT +Value: wav + + +11:11:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365596) +Variable: FROMEXTEN +Value: 79218417646 + + +11:11:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:11:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365596 +Priority: 4 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365596 +Application: Set +AppData: __FROM_DID=79217365596 + + +11:11:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megaf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +11:11:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365596 +Priority: 11 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 79217365596 +Application: Set +AppData: __REVERSAL_REJECT=FALSE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:11:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365596 +Priority: 15 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 79217365596 +Application: Wait +AppData: 1 +Response: Success +Ping: Pong +Timestamp: 1724487085.946556 + + +11:11:26 + +Event: Newexten +Privilege: dialplan,all +Channel: P +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 3 +Priority: 1 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 3 +Application: Set +AppData: DB(TC/3/INUSESTATE)=INUSE + + +11:11:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 3 +Priority: 16 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 3 +Application: Set +AppData: DEVICE_STATE(Custom +Variable: DB_RESULT +Value: + + +11:11:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ivr-1 +Exten: +Priority: 4 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: __IVR_RETVM= +Variable: _IVR_CONTEXT +Value: ivr-1 + + +11:11:26 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ivr-1 +Exten: s +Priority: 6 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: s +Application: Answer +AppData: +Device: PJSIP/Megafon_2 +State: INUSE + + +11:11:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ivr-1 +Exten: s +Priority: 8 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: IVR_MSG +Value: custom/IVR_1 +Extension: s +Application: Set +AppData: TIMEOUT(digit)=3 + + +11:11:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: __ivrreturn +Value: 0 +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +11:11:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 2 +Application: AGI +AppData: agi + + +11:11:42 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +CommandId: 1595488749 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +11:11:42 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +CommandId: 1757173298 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +11:11:43 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +CommandId: 1041961511 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +11:11:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724487085.100 +Linkedid: 1724487085.10047 +CommandId: 2027639812 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +11:11:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724487085.1 +Linkedid: 1724487085.10047 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +11:11:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724487085. +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +11:11:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: AMPUSER +Value: 79218417646 +Extension: s +Application: Set +AppData: AMPUSER=79218417646 + + +11:11:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +11:11:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +11:11:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +11:11:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +11:11:43 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:11:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +11:11:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +11:11:43 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +11:11:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +11:11:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7921 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +11:11:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +11:11:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +11:11:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +11:11:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +11:11:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:11:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2- +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:11:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +11:11:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +11:11:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 194 +Application: QueueLog +AppData: 194,1724487085.10047,NONE,DID,79217365596 + + +11:11:51 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:11:52 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487085.10 +Linkedid: 1724487085.10047 +Variable: QUEUEJOINTIME +Value: 1724487111 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365596 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487111.10048 +Linkedid: 1724487085.10047 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365596 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487111.10048 +Linkedid: 1724487085.10047 +Variable: IVR_CONTEXT_ivr-1 +Value: + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365596 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487111.10048 +Linkedid: 1724487085.10047 +Variable: __DAY +Value: 24 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: __NODEST +Value: 194 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: +Linkedid: 1724487085.10047 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:11:52 + +Event: N +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: __DIRECTION +Value: + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +LocalOneChannel: Local/12@from-queue-00000ac5;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365596 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724487111.10048 +LocalOneLinkedid: 1724487085.10047 +LocalTwoChannel: Local/12@from-queue-00000ac5;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79218417646 +LocalTwoCallerIDName: 79218417646 +LocalTwoConnectedLineNum: 79217365596 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724487111.10049 +LocalTwoLinkedid: 1724487085.10047 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ac5;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365596 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724487111.10048 +DestLinkedid: 1724487085.10047 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: DB_RESULT +Value: EXTENSION +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +11:11:52 + +Event: Newexten +Privilege: dialplan +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79218417646 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: +Priority: 51 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: s +Application: GotoIf +AppData: 0?cnum +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365596 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487111.10050 +Linkedid: 1724487085.10047 +Variable: __CWIGNORE +Value: TRUE +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365596 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487111.10050 +Linkedid: +Variable: __IVR_RETVM +Value: + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365596 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487111.10050 +Linkedid: 1724487085.10047 +Variable: __MONTH +Value: 2024 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: __QCONTEXT +Value: 0 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: IVR_CONTEXT_ivr-1 +Value: + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: __DAY +Value: 24 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000ac6;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365596 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724487111.10050 +LocalOneLinkedid: 1724487085.10047 +LocalTwoChannel: Local/13@from-queue-00000ac6;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79218417646 +LocalTwoCallerIDName: 79218417646 +LocalTwoConnectedLineNum: 79217365596 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724487111.10051 +LocalTwoLinkedid: 1724487085.10047 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000ac6;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365596 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724487111.10050 +DestLinkedid: 1724487085.10047 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +11:11:52 + +Event: VarSet +Privilege: dia +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: DB_RESULT +Value: EXTENSION +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +11:11:52 + +Event: V +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: +Application: Set +AppData: CHANCONTEXT=from-queue-00000ac6;2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79218417646 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724487111.10051 +Linkedid: 17 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_EXTEN +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724487111 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-111151 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +11:11:52 + +Event: Newexten +Privilege: dialplan +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79218417646) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: /var/spool/asterisk/monitor/2024/08/24/external-12-79218417646-20240824-111151-1724487111.10049.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79218417646-20240824-111151-1724487111.10049.wav,abi(), + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: MACRO_DEPTH +Value: 1 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365596 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487111.10052 +Linkedid: 1724487085.10047 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365596 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487111.10052 +Linkedid: 1724487085.10047 +Variable: IVR_CONTEXT_ivr-1 +Value: + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365596 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487111.10052 +Linkedid: 1724487085.10047 +Variable: __DAY +Value: 24 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487111.10053 +Linkedid: 17244870 +Variable: __NODEST +Value: 194 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: __CALLINGNAMEPRES_SV +Value: + + +11:11:52 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: __DIRECTION +Value: + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365596 +CallerIDName: +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487111.10050 +Linkedid: 1724487085.10047 +LocalOneChannel: Local/10@from-queue-00000ac7;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365596 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724487111.10052 +LocalOneLinkedid: 1724487085.10047 +LocalTwoChannel: Local/10@from-queue-00000ac7;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79218417646 +LocalTwoCallerIDName: 79218417646 +LocalTwoConnectedLineNum: 79217365596 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724487111.10053 +LocalTwoLinkedid: 1724487085.10047 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000ac7;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365596 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724487111.10052 +DestLinkedid: 1724487085.10047 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724487111.1 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: CALLTYPE +Value: external + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79218417646-20240824-111151-1724487111.10051 +Variable: MACRO_DEPTH +Value: 1 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000ac6;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000ac6;2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG2 +Value: + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_D +Value: +Extension: exten +Application: Return +AppData: + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: __FROMQ +Value: true +Extension: 194 +Application: Goto +AppData: from-internal,10,1 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ac7;2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: CHANEXTEN +Value: 10 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000ac7;2 +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724487111 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: CALLERID(name)=79218417646 +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +11:11:52 + +Event: +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: DB_RESULT +Value: 12 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 792184176 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79218417646 +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792184 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: PROGRESSTIM +Value: + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011a9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487111.10054 +Linkedid: 1724487085.10047 +Variable: __MIXMON_ID +Value: +Extension: s +Application: Set +AppData: CDR(cnum)=79218417646 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011a9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487111.10054 +Linkedid: 1724487085.10047 +Variable: __EXTTOCALL +Value: 12 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011a9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: ARG1 +Value: novm + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724487111 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record +Exten: s +Priority: 10 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 7921841 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: DB_RESULT +Value: ye +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: LOCAL(ARG1) +Value: yes + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: RECFROMEXTEN +Value: 79218417646 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79218417646) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79218417646-20240824-111151-1724487111.10053.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79218417646-20240824-111151-1724487111.10053.wav + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724 +Linkedid: 1724487085.10047 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: recordcheck +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: LOCAL(ARGC) +Value: 0 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: DB_RESULT +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: PJSIP/10/sip + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 172448711 +Linkedid: 1724487085.10047 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +11:11:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: ANSWEREDTIME +Value: + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011aa +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487111.100 +Linkedid: 1724487085.10047 +Variable: __KEEPCID +Value: TRUE + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011aa +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Variable: __YEAR +Value: 2024 + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011aa +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Variable: __RVOL_MODE +Value: dontcare + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011aa +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Variable: __MOHCLASS +Value: + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011aa +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +11:11:52 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487111.10048 +Linkedid: 1724487085.10047 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/12-000011a9 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724487111.10054 +DestLinkedid: 1724487085.10047 +DialString: 12/sip + + +11:11:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487111.10052 +Linkedid: 1724487085.10047 +DestChannel: PJSIP/10-000011aa +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724487111.10055 +DestLinkedid: 1724487085.10047 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE +Variable: ARGC +Value: +DialString: 10/sip +Extension: recordcheck +Application: Return +AppData: + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +11:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +11:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: MACRO_DEPTH +Value: 2 + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +11:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +11:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ds +Priority: 12 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +11:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 17244 +Linkedid: 1724487085.10047 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79218417646 + + +11:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792184176 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +11:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0 + + +11:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 17 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +11:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: r +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 792 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:11:53 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085. +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 79217365596 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: RINGTIME +Value: + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ab +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487112.10056 +Linkedid: 172 +Variable: __REC_STATUS +Value: RECORDING +DestChannel: Local/10@from-queue-00000ac7;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487111.10052 +DestLinkedid: 1724487085.10047 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ab +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487112.10056 +Linkedid: 1724487085.10047 +Variable: __PICKUPMARK +Value: 13 + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ab +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Ре +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487112.10056 +Linkedid: 1724487085.10047 +Variable: __NODEST +Value: 194 + + +11:11:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011ab +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487112.10056 +Linkedid: 1724487085.10047 +Variable: __DIRECTION +Value: + + +11:11:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ab +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 1 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724487112.10056 +Linkedid: 1724487085.10047 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +11:11:53 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/13@from-queue-00000ac6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регис +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724487112.10056 +DestLinkedid: 1724487085.10047 +DialString: 13/sip +Device: Local/13@from-queue +State: INUSE + + +11:11:53 + +Event: RTCPSent +Privilege: reporting,all +ChannelType: PJSIP +Username: sip +Domain: sip +Status: Registered +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x00ac6995 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724487112.456464 +SentRTP: 199455 +SentPackets: 1077 +SentOctets: 172167 +Report0SourceSSRC: 0x00050195 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3468 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 59114258 +Report0DLSR: 3.0290 + + +11:11:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011a9 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724487111.10054 +Linkedid: 1724487085.10047 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +11:11:55 + +Event: DialState +Privilege: call,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: RINGTIME_MS +Value: 3279 +DestChannel: Local/12@from-queue-00000ac5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487111.10048 +DestLinkedid: 1724487085.10047 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:11:55 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 55 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3570 +Device: PJSIP/13 +State: RINGING +DestChannel: PJSIP/13-000011ab +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724487112.10056 +DestLinkedid: 1724487085.10047 +DialStatus: RINGING +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +11:11:55 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +DestChannel: Local/13@from-queue-00000ac6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487111.10050 +DestLinkedid: 1724487085.10047 +DialStatus: RINGING + + +11:11:56 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 4226 +Device: PJSIP/10 +State: RINGING +DestChannel: Local/10@from-queue-00000ac7;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487111.10052 +DestLinkedid: +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 298 +LastCall: 1724485723 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:11:57 + +Event: DeviceSta +Privilege: dialplan,all +Channel: PJSIP/10-000011aa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +11:11:57 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/10-000011aa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 792184 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: CFIGNORE= +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 298 +LastCall: 1724485723 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: CFIGNORE +Value: + + +11:11:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011aa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +11:11:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011aa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_2-000011a8)= + + +11:11:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011aa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +11:11:57 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000ac7;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487111.10052 +Linkedid: 1724487085.10047 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-000011aa +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724487111.10055 +DestLinkedid: 1724487085.10047 +DialStatus: ANSWER +BridgeUniqueid: 7fcb09de-73f2-4178-aef1-998d350d8ba0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:11:57 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: f2a5f0c4-fc65-4e37-9a9e-21314c00cd50 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-di +Exten: s +Priority: 55 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +DestChannel: PJSIP/12-000011a9 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724487111.10054 +DestLinkedid: 1724487085.10047 +DialStatus: CANCEL +Variable: ARG3 +Value: 0 + + +11:11:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: m +Exten: s +Priority: 55 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_EXTEN +Value: + + +11:11:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:11:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921 +CallerIDName: 79218417646 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Extension: s +Application: GotoIf +AppData: 1?theend +DestChannel: PJSIP/13-000011ab +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724487112.10056 +DestLinkedid: 1724487085.10047 +DialStatus: CANCEL +Variable: ARG3 +Value: 0 +Source: 79218417646 +Destination: 13 +DestinationContext: ext-local +CallerID: "79218417646" <79218417646> +DestinationChannel: PJSIP/13-000011ab +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724487111.10051 +UserField: + + +11:11:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_EXTEN +Value: + + +11:11:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Extension: h +Application: Macro +AppData: hangupcall, +Cause-txt: Answered elsewhere + + +11:11:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724487111.10051 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 26 +Cause-txt: Answered elsewhere + + +11:11:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487111.10052 +Linkedid: 1724487085.10047 +Variable: BRIDGEPVTCALLID +Value: SDofe +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: f2a5f0c4-fc65-4e37-9a9e-21314c00cd50 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +11:11:58 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10-000011aa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Variable: BRIDGEPEER +Value: 1 +Device: Local/13@from-queue +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10072 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 7fcb09de-73f2-4178-aef1-998d350d8ba0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:11:58 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 7fcb09de-73f2-4178-aef1-998d350d8ba0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000ac5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_EXTEN +Value: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10076 +Extension: s +Application: Hangup +AppData: + + +11:11:58 + +Event: DeviceStateChange +Privilege: call,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487111.10049 +Linkedid: 1724487085.10047 +Variable: MACRO_PRIORITY +Value: 1 +Source: 79218417646 +Destination: 12 +DestinationContext: ext-local +CallerID: "79218417646" <79218417646> +DestinationChannel: PJSIP/12-000011a9 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724487111.10049 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10077 +Device: Local/12@from-queue +State: NOT_INUSE + + +11:12:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001750;avgrxjitter=000.000183;stdevrxjitter=000.000245;mintxjitter=000.000500;maxtxjitter=387.088125;avgtxjitter=055.299250;stdevtxjitter=135.452241; + + +11:12:06 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487111.10052 +Linkedid: 1724487085.10047 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000245; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=076.028808; stdevtxmes=022.873665; + + +11:12:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +DestChannel: Local/10@from-queue-00000ac7;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79218417646 +DestConnectedLineName: 79218417646 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487111.10052 +DestLinkedid: 1724487085.10047 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +TalkTime: 9 +Reason: caller +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: f2a5f0c4-fc65-4e37-9a9e-21314c00cd50 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Source: 79218417646 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79218417646" <79218417646> +DestinationChannel: Local/12@from-queue-00000ac5;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 31 +BillableSeconds: 30 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724487085.10047 +UserField: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Cause: 16 + + +11:12:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724487085.10047 +Linkedid: 1724487085.10047 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +11:12:06 + +Event: Hangup +Privilege: call,all +Channel: Local/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: f2a5f0c4-fc65-4e37-9a9e-21314c00cd50 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 + + +11:12:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011aa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Variable: BRIDGEPVTCALLID +Value: + + +11:12:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ac7;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: 7fcb09de-73f2-4178-aef1-998d350d8ba0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Variable: MACRO_DEPTH +Value: 1 + + +11:12:06 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_2-000011a8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79218417646 +ConnectedLineName: 79218417646 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724487111.10055 +Linkedid: 1724487085.10047 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000215; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 299 +LastCall: 1724487126 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 79218417646 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79218417646" <79218417646> +DestinationChannel: Local/10@from-queue-00000ac7;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 14 +BillableSeconds: 14 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724487085.10047 +UserField: + + +11:12:06 + +Event: Cdr +Privilege: cdr,all +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: Local/10@from-queue-00000ac7;2 +ActionID: 10080 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79218417646 +CallerIDName: 79218417646 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487111.10053 +Linkedid: 1724487085.10047 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Cause: 16 +Cause-txt: Normal Clearing +Source: 79218417646 +Destination: 10 +DestinationContext: ext-local +CallerID: "79218417646" <79218417646> +DestinationChannel: PJSIP/10-000011aa +LastApplication: Dial +LastData: PJSIP/10/sip + + +11:12:06 + +Event: UserEvent +Privilege: user,all +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/10@FROM-QUEUE +ActionID: 10081 + + +11:19:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T11 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +11:19:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T11 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +11:20:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 16 +Priority: 1 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:20:22 + +Event: +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 16 +Priority: 3 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_EXTEN +Value: 16 +Extension: 16 +Application: Macro +AppData: exten-vm,novm,16,0,0,0 + + +11:20:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: CHANEXTEN +Value: 10-000011ac +Extension: s +Application: Set +AppData: CHANEXTEN=10-000011ac + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 2 + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: MACRO_DEPTH +Value: 2 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 22 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(all)="Регистратура_3" <10> + + +11:20:23 + +Event: Newexten +Privilege: dialpla +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: DB_RESULT +Value: 79217365096 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=16) + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 25 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?limit + + +11:20:23 + +Event: New +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: __TTL +Value: 64 +Extension: s +Application: Set +AppData: __TTL=64 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-calle +Exten: s +Priority: 52 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: Set +AppData: CDR(cnam)=Регистратура_3 +Variable: MACRO_DEPTH +Value: 2 + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 54 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 1 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: 0?initialized + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: Set +AppData: __FROMEXTEN=10 +Variable: MACRO_DEPTH +Value: 1 + + +11:20:23 + +Event: Newexten +Privilege: d +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=internal + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-ch +Exten: exten +Priority: 14 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: Set +AppData: CALLERRECMODE=yes + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 22 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(RECMODE=dontcare) + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724487622.10057 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/internal-16-10-20240824-112022-1724487622.10057.wav,abi(), + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Рег +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: Macro +AppData: dial-one,,HhTtr,16 +Variable: MACRO_EXTEN +Value: s + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 1 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=16 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: GotoIf +AppData: 0?next1 +Variable: MACRO_DEPTH +Value: 2 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/16/sip +Variable: MACRO_DEPTH +Value: 2 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: +Extension: dstring +Application: Set +AppData: ITER=2 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/16)=10 + + +11:20:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-display +Exten: s +Priority: 1 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Goto +AppData: state-not_set,1 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.1 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +11:20:23 + +Event: +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: Dial +AppData: PJSIP/16/sip +Variable: DIALEDTIME +Value: + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-000011ad +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487622.10058 +Linkedid: 1724487622.10057 +Variable: __REC_STATUS +Value: RECORDING + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-000011ad +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487622.10058 +Linkedid: 1724487622.10057 +Variable: __PICKUPMARK +Value: 16 + + +11:20:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-000011ad +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724487622.10058 +Linkedid: 1724487622.10057 +Variable: TECH +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +11:20:23 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487622.10058 +Linkedid: 1724487622.10057 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse + + +11:20:23 + +Event: DialState +Privilege: call,all +Device: PJSIP/16 +State: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 299 +LastCall: 1724487126 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 8 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Exten: s +Context: macro-dial-one +Hint: PJSIP/16&Custom +StatusText: Ringing +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: 16 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 44 +DestChannel: PJSIP/16-000011ad +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 16 +DestCallerIDName: Каб. 4 +DestConnectedLineNum: 10 +DestConnectedLineName: Регистратура_3 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 16 +DestPriority: 1 +DestUniqueid: 1724487622.10058 +DestLinkedid: 1724487622.10057 +DialStatus: RINGING + + +11:21:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_PRIORITY +Value: 3 + + +11:21:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:21:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 3 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +11:21:02 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487622.10057 +Linkedid: 1724487622.10057 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Source: 10 +Destination: 16 +DestinationContext: ext-local +CallerID: "Регистратура_3" <10> +DestinationChannel: PJSIP/16-000011ad +LastApplication: Dial +LastData: PJSIP/16/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 39 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724487622.10057 +UserField: +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/10 +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: + + +11:21:02 + +Event: UserEvent +Privilege: user,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 299 +LastCall: 1724487126 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10083 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 22 +Priority: 1 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:21:05 + +Event: +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 22 +Priority: 3 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_EXTEN +Value: 22 +Extension: 22 +Application: Macro +AppData: exten-vm,novm,22,0,0,0 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: CHANEXTEN +Value: 10-000011ae +Extension: s +Application: Set +AppData: CHANEXTEN=10-000011ae + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 2 + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: MACRO_DEPTH +Value: 2 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 22 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(all)="Регистратура_3" <10> + + +11:21:05 + +Event: Newexten +Privilege: dialpla +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: DB_RESULT +Value: 79217365096 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=22) + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 25 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?limit + + +11:21:05 + +Event: New +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: __TTL +Value: 64 +Extension: s +Application: Set +AppData: __TTL=64 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-calle +Exten: s +Priority: 52 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: Set +AppData: CDR(cnam)=Регистратура_3 +Variable: MACRO_DEPTH +Value: 2 + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 54 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 1 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: 0?initialized + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: Set +AppData: __FROMEXTEN=10 +Variable: MACRO_DEPTH +Value: 1 + + +11:21:05 + +Event: Newexten +Privilege: d +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=internal + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-ch +Exten: exten +Priority: 14 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: Set +AppData: CALLERRECMODE=yes + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 22 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(RECMODE=dontcare) + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724487665.10059 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/internal-22-10-20240824-112105-1724487665.10059.wav,abi(), + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Рег +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: Macro +AppData: dial-one,,HhTtr,22 +Variable: MACRO_EXTEN +Value: s + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 1 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=22 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: GotoIf +AppData: 0?next1 +Variable: MACRO_DEPTH +Value: 2 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/22/sip +Variable: MACRO_DEPTH +Value: 2 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: +Extension: dstring +Application: Set +AppData: ITER=2 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/22)=10 + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-displ +Exten: s +Priority: 1 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Goto +AppData: state-not_set,1 + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-display +Exten: state-not_set +Priority: 2 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: state-not_set +Application: Return +AppData: +Variable: DB_RESULT +Value: Столовая + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистр +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: ANSWEREDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/22/sip + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-000011af +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487665.10060 +Linkedid: 1724487665.10059 +Variable: __REC_STATU +Value: + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-000011af +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487665.10060 +Linkedid: 1724487665.10059 +Variable: __DAY +Value: 24 + + +11:21:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/22-000011af +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: func-apply-siphe +Exten: s +Priority: 1 +Uniqueid: 1724487665.10060 +Linkedid: 1724487665.10059 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/22-000011af + + +11:21:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-000011af +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: fun +Exten: s +Priority: 13 +Uniqueid: 1724487665.10060 +Linkedid: 1724487665.10059 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +11:21:05 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +DestChannel: PJSIP/22-000011af +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 22 +DestCallerIDName: Столовая +DestConnectedLineNum: 10 +DestConnectedLineName: Регистратура_3 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724487665.10060 +DestLinkedid: 1724487665.10059 +DialString: 22/sip +Device: PJSIP/22 +State: RINGING +Hint: PJSIP/22&Custom +Status: 8 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 299 +LastCall: 1724487126 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: 22 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 33 + + +11:21:09 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/10-000011ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: DIALEDPEERNUMBER +Value: 22/sip +Hint: PJSIP/22&Custom +Status: 1 +StatusText: InUse +DestChannel: PJSIP/22-000011af +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 22 +DestCallerIDName: Столовая +DestConnectedLineNum: 10 +DestConnectedLineName: Регистратура_3 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: +DestPriority: 1 +DestUniqueid: 1724487665.10060 +DestLinkedid: 1724487665.10059 +DialStatus: ANSWER +Device: PJSIP/22 +State: INUSE + + +11:21:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 370a209a-07c3-4a24-b0af-8b7923cb824d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID +Value: f1244a0a-e95a-4ee9-81b3-a26db75de5e6 + + +11:21:14 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/10-000011ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4e8c632f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724487674.286520 +SentRTP: 1310165576 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x452eeb2c +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 18163 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:21:29 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/10-000011ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4e8c632f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724487689.286909 +SentRTP: 1310285736 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0x452eeb2c +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 18913 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:21:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-000011af +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:21:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 370a209a-07c3-4a24-b0af-8b7923cb824d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:21:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_EXTEN +Value: 22 + + +11:21:30 + +Event: SoftHangupRequest +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: MACRO_PRIORITY +Value: + + +11:21:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +11:21:30 + +Event: Hangup +Privilege: call,all +BridgeUniqueid: 370a209a-07c3-4a24-b0af-8b7923cb824d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/22-000011af +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724487665.10060 +Linkedid: 1724487665.10059 +Variable: RTPAUDIOQOSMES +Value: minrxmes=020.000000; maxrxmes=085.367289; avgrxmes=036.341822; stdevrxmes=000.000057; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=036.341822; stdevtxmes=028.304866; + + +11:21:30 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-hangupcall +Hint: PJSIP/22&Custom +Status: 0 +StatusText: Idle +Device: PJSIP/22 +State: NOT_INUSE +Channel: PJSIP/10-000011ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Priority: 4 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Value: ssrc=1317823279;themssrc=1160702764;lp=0;rxjitter=0.000000;rxcount=1029;txjitter=0.001125;txcount=1040;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Family: refreshcallhistory +ActionID: 10084 +Variable: RTPAUDIOQOS + + +11:21:30 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487665.10059 +Linkedid: 1724487665.10059 +Variable: RTPAUDIOQOSMES +Value: 1 +Source: 10 +Destination: 22 +DestinationContext: ext-local +CallerID: "Регистратура_3" <10> +DestinationChannel: PJSIP/22-000011af +LastApplication: Dial +LastData: PJSIP/22/sip +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 25 +BillableSeconds: 20 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724487665.10059 +UserField: +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 299 +LastCall: 1724487126 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10085 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 28 +Priority: 1 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:21:38 + +Event: +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 28 +Priority: 3 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_EXTEN +Value: 28 +Extension: 28 +Application: Macro +AppData: exten-vm,novm,28,0,0,0 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: CHANEXTEN +Value: 10-000011b0 +Extension: s +Application: Set +AppData: CHANEXTEN=10-000011b0 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 2 + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: MACRO_DEPTH +Value: 2 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 22 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(all)="Регистратура_3" <10> + + +11:21:38 + +Event: Newexten +Privilege: dialpla +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: DB_RESULT +Value: 79217365096 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=28) + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 25 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?limit + + +11:21:38 + +Event: New +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: __TTL +Value: 64 +Extension: s +Application: Set +AppData: __TTL=64 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-calle +Exten: s +Priority: 52 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: s +Application: Set +AppData: CDR(cnam)=Регистратура_3 +Variable: MACRO_DEPTH +Value: 2 + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 54 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 1 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: 0?initialized + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: s +Application: Set +AppData: __FROMEXTEN=10 +Variable: MACRO_DEPTH +Value: 1 + + +11:21:38 + +Event: Newexten +Privilege: d +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=internal + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-ch +Exten: exten +Priority: 14 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: Set +AppData: CALLERRECMODE=yes + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 22 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(RECMODE=dontcare) + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724487698.10061 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/internal-28-10-20240824-112138-1724487698.10061.wav,abi(), + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Рег +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: s +Application: Macro +AppData: dial-one,,HhTtr,28 +Variable: MACRO_EXTEN +Value: s + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 1 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=28 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: s +Application: GotoIf +AppData: 0?next1 +Variable: MACRO_DEPTH +Value: 2 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/28/sip +Variable: MACRO_DEPTH +Value: 2 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: +Extension: dstring +Application: Set +AppData: ITER=2 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/28)=10 + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-p +Exten: s +Priority: 1 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Goto +AppData: state-not_set,1 + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-display +Exten: state-not_set +Priority: 2 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: state-not_set +Application: Return +AppData: +Variable: DB_RESULT +Value: Каб. 3 (Процедурный) + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 2 +Extension: +Application: Set +AppData: D_OPTIONS=HhTtr + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: r +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Extension: s +Application: Dial +AppData: PJSIP/28/sip +Variable: DIALEDPEERNAME +Value: + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/28-000011b1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487698.10062 +Linkedid: 1724487698.10061 +Variable: DIALEDPEERNUMBER +Value: 28/sip + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/28-000011b1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487698.10062 +Linkedid: 1724487698.10061 +Variable: __TIMESTR +Value: 20240824-112138 + + +11:21:38 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/28-000011b1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-internal +Exten: 28 +Priority: 1 +Uniqueid: 1724487698.10062 +Linkedid: 1724487698.10061 +Variable: __RINGTIMER +Value: 60 +Extension: 28 +Application: AppDial +AppData: (Outgoing Line) + + +11:21:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724487698.10062 +Linkedid: 1724487698.10061 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +11:21:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/28-000011b1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-i +Exten: 28 +Priority: 1 +Uniqueid: 1724487698.10062 +Linkedid: 1724487698.10061 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/28-000011b1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 28 +DestCallerIDName: Каб. 3 (Процедурный) +DestConnectedLineNum: 10 +DestConnectedLineName: Регистратура_3 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724487698.10062 +DestLinkedid: 1724487698.10061 +DialString: 28/sip +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 299 +LastCall: 1724487126 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:21:38 + +Event: DialState +Privilege: call,all +Device: PJSIP/28 +State: RINGING +Exten: s +Context: macro-dial-one +Hint: PJSIP/28&Custom +Status: 8 +StatusText: Ringing +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: RINGTIME_MS +Value: 31 +DestChannel: PJSIP/28-000011b1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 28 +DestCallerIDName: Каб. 3 (Процедурный) +DestConnectedLineNum: 10 +DestConnectedLineName: Регистратура_3 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 28 +DestPriority: 1 +DestUniqueid: 1724487698.10062 +DestLinkedid: 1724487698.10061 +DialStatus: RINGING + + +11:21:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: DIALEDPEERNUMBER +Value: 28/sip +Device: PJSIP/28 +State: INUSE + + +11:21:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724487698.10062 +Linkedid: 1724487698.10061 +BridgeUniqueid: b4ac4285-2a4a-4f00-8a77-d87c4f325409 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 5da3ed81-121a532ea86a3d1311910080f0808080@KX-TGP600RU + + +11:21:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: BRIDGEPVTCALLID +Value: b66a49ea-36c4-42ea-96cd-c362715ff8c3 + + +11:21:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/10-000011b0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x042d8ab6 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724487712.304067 +SentRTP: 1420517320 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x5361e975 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 38184 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:21:57 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/10-000011b0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x042d8ab6 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724487717.304079 +SentRTP: 1420557160 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0x5361e975 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 38434 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/28-000011b1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724487698.10062 +Linkedid: 1724487698.10061 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +11:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/28-000011b1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724487698.10062 +Linkedid: 1724487698.10061 +Variable: BRIDGEPEER +Value: +Hint: PJSIP/28&Custom +Status: 0 +StatusText: Idle + + +11:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/28-000011b1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1 +Linkedid: 1724487698.10061 +Variable: RTPAUDIOQOSRTT +Value: minrtt=003.048324; maxrtt=003.048324; avgrtt=003.048324; stdevrtt=000.000000; +BridgeUniqueid: b4ac4285-2a4a-4f00-8a77-d87c4f325409 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/28 +State: NOT_INUSE +BridgeUniqueid: b4ac4285-2a4a-4f00-8a77-d87c4f325409 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Variable: MACRO_DEPTH +Value: 1 + + +11:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: ARG3 +Value: + + +11:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_CONTEXT +Value: ext-loc +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +11:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrx + + +11:21:57 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10087 +AccountCode: +Source: 10 +Destination: 28 +DestinationContext: ext-local +CallerID: "Регистратура_3" <10> +DestinationChannel: PJSIP/28-000011b1 +LastApplication: Dial +LastData: PJSIP/28/sip +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 19 +BillableSeconds: 10 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724487698.10061 +UserField: +Exten: h +Context: ext-local +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +Priority: 1 +Uniqueid: 1724487698.10061 +Linkedid: 1724487698.10061 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 299 +LastCall: 1724487126 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:21:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:21:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724487719.10063 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:21:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724487719. +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-112159 +Variable: __YEAR +Value: 2024 + + +11:21:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:21:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +11:21:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:21:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +11:21:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +11:21:59 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +11:21:59 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +11:22:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 24 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Goto +AppData: timeconditions,2,1 + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: 2 +Application: AGI +AppData: agi + + +11:22:01 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +CommandId: 1339034075 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +11:22:01 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +CommandId: 1024581163 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +11:22:01 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +CommandId: 1143897304 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724487719.100 +Linkedid: 1724487719.10063 +CommandId: 1749416751 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +11:22:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724487719.1 +Linkedid: 1724487719.10063 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724487719. +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +11:22:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: AMPUSER +Value: 79116094645 +Extension: s +Application: Set +AppData: AMPUSER=79116094645 + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +11:22:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +11:22:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +11:22:01 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +11:22:01 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +11:22:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7911 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +11:22:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +11:22:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +11:22:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +11:22:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:22:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3- +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +11:22:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: 194 +Application: QueueLog +AppData: 194,1724487719.10063,NONE,DID,79217365096 + + +11:22:10 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:22:10 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487719.10 +Linkedid: 1724487719.10063 +Variable: QUEUEJOINTIME +Value: 1724487730 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487730.10064 +Linkedid: 1724487719.10063 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487730.10064 +Linkedid: 1724487719.10063 +Variable: __RINGINGSENT +Value: TRUE + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487730.10064 +Linkedid: 1724487719.10063 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: __FROMQUEUEEXTEN +Value: 79116094645 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: __TIMESTR +Value: 20240824-112159 + + +11:22:10 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ac8;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724487730.10064 +LocalOneLinkedid: 1724487719.10063 +LocalTwoChannel: Local/12@from-queue-00000ac8;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116094645 +LocalTwoCallerIDName: 79116094645 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724487730.10065 +LocalTwoLinkedid: 1724487719.10063 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ac8;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: en +DestAccountCode: + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487730.10066 +Linkedid: 1724487719.10063 +DestChannel: Local/12@from-queue-00000ac8;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724487730.10064 +DestLinkedid: 1724487719.10063 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487730.10066 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487730.10066 +Linkedid: 1724487719.10063 +Variable: __DIRECTION +Value: + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000011b2 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: __MON_FMT +Value: wav + + +11:22:10 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000ac9;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724487730.10066 +LocalOneLinkedid: 1724487719.10063 +LocalTwoChannel: Local/13@from-queue-00000ac9;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116094645 +LocalTwoCallerIDName: 79116094645 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724487730.10067 +LocalTwoLinkedid: 1724487719.10063 +LocalOptimization: No + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487730.10068 +Linkedid: 1724487719.10063 +DestChannel: Local/13@from-queue-00000ac9;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724487730.10066 +DestLinkedid: 1724487719.10063 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487730.10068 +Linkedid: 1724487719.10063 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487730.10068 +Linkedid: 1724487719.10063 +Variable: __DAY +Value: 24 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +11:22:10 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: __FROM_DID +Value: 79217365096 + + +11:22:10 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000aca;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724487730.10068 +LocalOneLinkedid: 1724487719.10063 +LocalTwoChannel: Local/10@from-queue-00000aca;2 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 3 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +DestChannel: Local/10@from-queue-00000aca;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724487730.10068 +DestLinkedid: 1724487719.10063 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 12 +Application: GotoIf +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: 13 +Application: GotoIf +AppData: 1?194,1 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: +Priority: 1 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: DB_RESULT +Value: EXTENSION + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 +Variable: ARG1 +Value: + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: CHANCONTEXT +Value: from-queue-00000ac8;2 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000ac8;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000ac8;2 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724487730.100 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000ac8;2 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: CHANEXTENCONTEXT +Value: 13@from-queue-00000ac9;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000ac9;2 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: HOTDESKCALL +Value: 0 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: 10 +Application: Set +AppData: QAGENT=10 +Variable: QAGENT +Value: 10 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: DB_RESULT +Value: 0 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: ARG2 +Value: 10 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPTH +Value: 2 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79116094645 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: s +Application: +AppData: Macro Depth is 2 +Variable: MACRO_DEPTH +Value: 2 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 32 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79116094645 + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 +Variable: MACRO_DEPTH +Value: 1 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +11:22:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-112210 +Variable: MACRO_DEPTH +Value: 1 + + +11:22:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911609464 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Record + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARGC) +Value: 3 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: __REC_POLICY_MODE +Value: YES + + +11:22:11 + +Event: Newexten +Privilege: dialplan, +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79116094645) +Variable: MACRO_DEPTH +Value: 1 + + +11:22:11 + +Event: VarS +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79116094645-20240824-112210-1724487730.10067.wav +Variable: MACRO_DEPTH +Value: 1 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: THISDIAL +Value: PJSIP/13/sip + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Aler + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +11:22:11 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 172448773 +Linkedid: 1724487719.10063 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487730.10064 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724487730.1006 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: Set +AppData: CALLTYPE=external + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79116094645-20240824-112210-1724487730.10065.wav,abi(), + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000ac8;2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: DEXTEN +Value: 12 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724487730.10065 +Linkedid: 1724 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 1?godial + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011b3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487730.10070 +Linkedid: 1724487719.10063 +Variable: __REC_POLICY_MODE +Value: YES + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011b3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487730.10070 +Linkedid: 1724487719.10063 +Variable: __CALLEE_ACCOUNCODE +Value: + + +11:22:11 + +Event: VarSet +Privilege: +Channel: PJSIP/13-000011b3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487730.10070 +Linkedid: 1724487719.10063 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724487730.10070 +Linkedid: 1724487719.10063 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/13-000011b3 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: While +AppData: 0 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.100 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 +Variable: MACRO_DEPTH +Value: 1 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-reco +Exten: s +Priority: 1 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011b4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 3 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: NOW=1724487730 +Variable: NOW +Value: 1724487730 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011b4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487730.10071 +Linkedid: 1724487719.10063 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __DAY=24 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011b4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487730.10071 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011b4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487730.10071 +Linkedid: 1724487719.10063 +Variable: __FROMQUEUEEXTEN +Value: 79116094645 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724487730.10071 +Linkedid: 1724487719.10063 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79116094645 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,al +Channel: PJSIP/12-000011b4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724487730.10071 +Linkedid: 1724487719.10063 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +11:22:11 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/13@from-queue-00000ac9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистра +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724487730.10070 +DestLinkedid: 1724487719.10063 +DialString: 13/sip + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +DestChannel: Local/12@from-queue-00000ac8;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487730.10064 +DestLinkedid: 1724487719.10063 +DialString: 12/sip +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE +Variable: DB_RESULT +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 7911609464 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116094645) + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: reco +Priority: 20 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79116094645-20240824-112210-1724487730.10069.wav,abi(), + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-791 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-che +Exten: exten +Priority: 12 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 2 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719. +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: dstring +Priority: 7 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 +Variable: THISDIAL +Value: PJSIP/10 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +11:22:11 + +Event: Newexten +Privilege: dialpl +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724487730.10069 +Linkedid: 17244877 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 31 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724487730.10069 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALED +Value: + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487730.10072 +Linkedid: 1724487719.10063 +Variable: __REC_STATUS +Value: RECORDING + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487730.10072 +Linkedid: 1724487719.10063 +Variable: __DAY +Value: 24 + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: fr +Exten: s +Priority: 1 +Uniqueid: 1724487730.10072 +Linkedid: 1724487719.10063 +Variable: __QCONTEXT +Value: 0 + + +11:22:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: +Uniqueid: 1724487730.10072 +Linkedid: 1724487719.10063 +Variable: __DIRECTION +Value: + + +11:22:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724487730.10072 +Linkedid: 1724487719.10063 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +11:22:11 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/10@from-queue-00000aca;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724487730.10072 +DestLinkedid: 1724487719.10063 +DialString: 10/sip +Device: Local/10@from-queue +State: INUSE + + +11:22:13 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 2981 +DestChannel: PJSIP/12-000011b4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724487730.10071 +DestLinkedid: 1724487719.10063 +DialStatus: RINGING +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:22:14 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 3536 +DestChannel: Local/10@from-queue-00000aca;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487730.10068 +DestLinkedid: 1724487719.10063 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 299 +LastCall: 1724487126 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:22:14 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 53 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: RINGTIME_MS +Value: 4182 +DestChannel: Local/13@from-queue-00000ac9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487730.10066 +DestLinkedid: 1724487719.10063 +DialStatus: RINGING +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:22:16 + +Event: VarSet +Privilege: agent,all +Channel: PJSIP/10-000011b5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724487730.10072 +Linkedid: 1724487719.10063 +Variable: MACRO_PRIORITY +Value: 1 +Device: PJSIP/10 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 299 +LastCall: 1724487126 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:22:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724487730.10072 +Linkedid: 1724487719.10063 +Variable: MAC +Value: +Extension: s +Application: Set +AppData: CFIGNORE= + + +11:22:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724487730.1 +Linkedid: 1724487719.10063 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +11:22:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: 1724487730.10072 +Linkedid: 1724487719. +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000011b2)= + + +11:22:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 172448773 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +11:22:16 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000aca;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487730.10068 +Linkedid: 1724487719.10063 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-000011b5 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724487730.10072 +DestLinkedid: 1724487719.10063 +DialStatus: ANSWER +BridgeUniqueid: e62d3f88-d9fb-403a-a7e1-c64e8f542ce0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE + + +11:22:16 + +Event: HangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: 194 +Priority: 53 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +DestChannel: Local/12@from-queue-00000ac8;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487730.10064 +DestLinkedid: 1724487719.10063 +DialStatus: CANCEL + + +11:22:16 + +Event: AgentConnect +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 10 +ConnectedLineName: Р +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000ac9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487730.10066 +DestLinkedid: 1724487719.10063 +DialStatus: CANCEL +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 + + +11:22:16 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 2e5c6644-4cab-4486-a283-8032f0b8d75d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +DestChannel: PJSIP/12-000011b4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724487730.10071 +DestLinkedid: 1724487719.10063 +DialStatus: CANCEL +Variable: ARG3 +Value: 0 + + +11:22:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487730.100 +Linkedid: 1724487719.10063 +Variable: MACRO_EXTEN +Value: + + +11:22:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 172448 +Linkedid: 1724487719.10063 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:22:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724487730.10 +Linkedid: 1724487719.10063 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_CONTEXT +Value: +Device: Local/13@from-queue +State: NOT_INUSE + + +11:22:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487730.10067 +Linkedid: 1 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: e62d3f88-d9fb-403a-a7e1-c64e8f542ce0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID +Value: 02fc47db-fdc9-4cda-8da2-e2813254c64c +DestChannel: PJSIP/13-000011b3 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116094645 +DestConnectedLineName: 79116094645 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724487730.10070 +DestLinkedid: 1724487719.10063 +DialStatus: CANCEL + + +11:22:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 17 +Linkedid: 1724487719.10063 +Variable: ARG1 +Value: + + +11:22:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ac9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 17 +Linkedid: 1724487719.10063 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:22:16 + +Event: Cdr +Privilege: cdr,all +Channel: Local/12@from-queue-00000ac8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487730.10065 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10088 +Source: 79116094645 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116094645" <79116094645> +DestinationChannel: PJSIP/12-000011b4 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 5 +BillableSeconds: 0 + + +11:22:16 + +Event: Devic +Privilege: call,all +UserEvent: refreshcallhistory +Value: Local/10@from-queue-00000aca;1 +Family: refreshcallhistory +Channel: PJSIP/13-000011b3 +ActionID: 10089 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724487730.10070 +Linkedid: 1724487719.10063 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: 2e5c6644-4cab-4486-a283-8032f0b8d75d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Cause: 26 +Cause-txt: Answered elsewhere +Variable: BRIDGEPEER +Device: PJSIP/12 +State: NOT_INUSE + + +11:22:16 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-hangupcall +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: Local/13@from-queue-00000ac9;2 +ActionID: 10090 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Priority: 4 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Variable: MACRO_CONTEXT +Extension: s +Application: Hangup +AppData: + + +11:22:16 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487730.10067 +Linkedid: 1724487719.10063 +Cause: 26 +Cause-txt: Answered elsewhere +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10093 +Device: Local/13@from-queue +State: NOT_INUSE +Source: 79116094645 +Destination: 13 +DestinationContext: ext-local +CallerID: "79116094645" <79116094645> +DestinationChannel: PJSIP/13-000011b3 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724487730.10067 +UserField: + + +11:23:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724487730.10072 +Linkedid: 1724487719.10063 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:23:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 17244 +Linkedid: 1724487719.10063 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: e62d3f88-d9fb-403a-a7e1-c64e8f542ce0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:23:45 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724487730.10072 +Linkedid: 1724487719.10063 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10094 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 300 +LastCall: 1724487825 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: e62d3f88-d9fb-403a-a7e1-c64e8f542ce0 +BridgeType: basic + + +11:23:45 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: e62d3f88-d9fb-403a-a7e1-c64e8f542ce0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000ac +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: ARG2 +Value: 10 + + +11:23:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: ARG5 +Value: + + +11:23:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:23:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aca;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724487730.10069 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +Source: 79116094645 +Destination: 10 +DestinationContext: ext-local +CallerID: "79116094645" <79116094645> +DestinationChannel: PJSIP/10-000011b5 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 94 +BillableSeconds: 88 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724487730.10069 +UserField: + + +11:23:45 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116094645 +ConnectedLineName: 79116094645 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487730.10068 +Linkedid: 1724487719.10063 +Variable: BRIDGEPEER +Value: +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: 2e5c6644-4cab-4486-a283-8032f0b8d75d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:23:45 + +Event: VarSet +Privilege: dialplan,all +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: ext-queues +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-000011b2 +ActionID: 10096 +BridgeUniqueid: 2e5c6644-4cab-4486-a283-8032f0b8d75d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_CONTEXT + + +11:23:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 172448 +Linkedid: 1724487719.10063 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: + + +11:23:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxm +Source: 79116094645 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116094645" <79116094645> +DestinationChannel: Local/12@from-queue-00000ac8;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724487719.10063 +UserField: + + +11:23:45 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-000011b2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116094645 +CallerIDName: 79116094645 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724487719.10063 +Linkedid: 1724487719.10063 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10097 +Source: 79116094645 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116094645" <79116094645> +DestinationChannel: Local/10@from-queue-00000aca;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 94 +BillableSeconds: 94 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724487719.10063 +UserField: + + +11:25:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: s +Application: GotoIf +AppData: 0?initialized +Variable: LOCAL(ARGC) +Value: 3 + + +11:25:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724487957.10073 +Linkedid: 1724 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +11:25:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +11:25:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG1) +Value: dontcare + + +11:25:57 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:25:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 +Variable: __FROM_DID +Value: 79217365096 + + +11:25:57 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +11:25:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 12 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +11:25:57 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Device: PJSIP/Megafon_3 +State: INUSE + + +11:25:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 14 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:25:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +11:25:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +11:25:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 2 +Application: AGI +AppData: agi + + +11:25:58 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +CommandId: 1327286930 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +11:25:58 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +CommandId: 138554030 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +11:25:59 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +CommandId: 1027390533 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +11:25:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +CommandId: 211329271 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +11:25:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724487957.100 +Linkedid: 1724487957.10073 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +11:25:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724487957.10 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +11:25:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: AMPUSER +Value: 79210218538 +Extension: s +Application: Set +AppData: AMPUSER=79210218538 + + +11:25:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +11:25:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 792 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +11:25:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +11:25:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +11:25:59 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:25:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +11:25:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +11:25:59 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +11:25:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +11:25:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 792102 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +11:25:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +11:25:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +11:25:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +11:25:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +11:25:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:25:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:25:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +11:25:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 194 +Application: QueueLog +AppData: 194,1724487957.10073,NONE,DID,79217365096 + + +11:26:08 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:26:08 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487957.10 +Linkedid: 1724487957.10073 +Variable: QUEUEJOINTIME +Value: 1724487968 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487968.10074 +Linkedid: 1724487957.10073 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487968.10074 +Linkedid: 1724487957.10073 +Variable: __RINGINGSENT +Value: TRUE + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487968.10074 +Linkedid: 1724487957.10073 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: __FROMQUEUEEXTEN +Value: 79210218538 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: __TIMESTR +Value: 20240824-112557 + + +11:26:08 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000acb;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724487968.10074 +LocalOneLinkedid: 1724487957.10073 +LocalTwoChannel: Local/12@from-queue-00000acb;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210218538 +LocalTwoCallerIDName: 79210218538 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724487968.10075 +LocalTwoLinkedid: 1724487957.10073 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000acb;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: en +DestAccountCode: + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: +Linkedid: 1724487957.10073 +DestChannel: Local/12@from-queue-00000acb;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724487968.10074 +DestLinkedid: 1724487957.10073 +DialString: Local/12@from-queue/n +Extension: 12 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487968.10076 +Linkedid: 1724487957.10073 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000011b6 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487968.10076 +Linkedid: 1724487957.10073 +Variable: __MON_FMT +Value: wav + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: __CWIGNORE +Value: TRUE + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: __REC_STATUS +Value: INITIALIZED + + +11:26:08 + +Event: Newchannel +Privilege: call,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487968.10078 +Linkedid: 1724487957.10073 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000acc;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724487968.10076 +LocalOneLinkedid: 1724487957.10073 +LocalTwoChannel: Local/13@from-queue-00000acc;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210218538 +LocalTwoCallerIDName: 79210218538 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724487968.10077 +LocalTwoLinkedid: 1724487957.10073 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000acc;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724487968.10076 +DestLinkedid: 1724487957.10073 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487968.10078 +Linkedid: 1724487957.10073 +Variable: __FROM_DID +Value: 79217365096 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: __QC_CONFIRM +Value: 0 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: __CALLINGNUMPRE +Value: + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: __DAY +Value: 24 + + +11:26:08 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000acd;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724487968.10078 +LocalOneLinkedid: 1724487957.10073 +LocalTwoChannel: Local/10@from-queue-00000acd;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210218538 +LocalTwoCallerIDName: 79210218538 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724487968.10079 +LocalTwoLinkedid: 1724487957.10073 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000acd;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724487968.10078 +DestLinkedid: 1724487957.10073 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: DB_RESULT +Value: EXTENSION + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000acc;2 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79210218538 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: HOTDESKEXTEN +Value: 13@from + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: __RINGTIMER +Value: 60 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724487968.10079 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000acd;2 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: HOTDESCKCHAN +Value: 10@from-queue-00000acd;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000acd;2 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: MACRO_DEPTH +Value: 2 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724487968.10079 +Linkedid: 1724 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: DB_RESULT +Value: EXTENSION +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONT + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79210218538 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from +Variable: MACRO_DEPTH +Value: 2 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724487968.10077 +Linkedid: 172448 +Extension: s +Application: Set +AppData: CDR(cnum)=79210218538 +Variable: RingGroupMethod +Value: none + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724487968.10077 +Linkedid: +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: CALLTYPE +Value: external + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: recordchec +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79210218538-20240824-112608-1724487968.10077 +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000acc;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000acc;2 + + +11:26:08 + +Event: VarSet +Privilege: +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: ARG1 +Value: novm + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MA +Value: 10 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: LOCAL(ARG2) +Value: 10 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub- +Exten: s +Priority: 3 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: NOW +Value: 1724487968 +Extension: s +Application: Set +AppData: NOW=1724487968 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +11:26:08 + +Event: Newexten +Privilege: +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: LOCAL(ARG1) +Value: yes + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79210218538) +Variable: RECFROMEXTEN +Value: 79210218538 + + +11:26:08 + +Event: VarSet +Privilege: dialpl +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79210218538-20240824-112608-1724487968.10079.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79210218538-20240824-112608-1724487968.10079.wav + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: 3 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-112608 +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921021853 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Record + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) +Variable: LOCAL(ARGC) +Value: 3 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: __REC_POLICY_MODE +Value: YES + + +11:26:08 + +Event: Newexten +Privilege: dialplan, +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79210218538) +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: VarS +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79210218538-20240824-112608-1724487968.10075.wav +Variable: MACRO_DEPTH +Value: 1 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: THISDIAL +Value: PJSIP/13/sip + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Aler + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +11:26:08 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 172448796 +Linkedid: 1724487957.10073 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +11:26:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:26:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011b7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487968.10080 +Linkedid: 1724487957.10073 +Variable: __TTL +Value: 63 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011b7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487968.10080 +Linkedid: 1724487957.10073 +Variable: __QCONTEXT +Value: 0 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011b7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487968.10080 +Linkedid: 1724487957.10073 +Variable: __FROM_DID +Value: 79217365096 + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011b7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724487968.10080 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: ctset +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 792102 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: GotoIf +AppData: 1?godial + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: DIALEDPEERNAME +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: DIALEDPEERNUMBER +Value: 10/sip + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: __TIMESTR +Value: 20240824-112608 + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: __QC_CONFIRM +Value: 0 + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: __RINGINGSENT +Value: TRUE + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 7 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 7921021853 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: MACRO_DEPTH +Value: 2 + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: dstring +Priority: 12 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ac +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79210218538 + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792102185 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: RINGTIME +Value: + + +11:26:09 + +Event: DialBegin +Privilege: call,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: PROGRESSTIME_MS +Value: +DestChannel: PJSIP/13-000011b7 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724487968.10080 +DestLinkedid: 17244879 +DialString: 10/sip +Device: Local/10@from-queue +State: INUSE +DialStatus: RINGING + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011b9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487968.10082 +Linkedid: 1724487957.10073 +DestChannel: Local/13@from-queue-00000acc;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487968.10076 +DestLinkedid: 1724487957.10073 +DialStatus: RINGING +Variable: __REC_STATUS +Value: RECORDING + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011b9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487968.10082 +Linkedid: 1724487957.10073 +Variable: __DAY +Value: 24 + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011b9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724487968.10082 +Linkedid: 1724487957.10073 +Variable: __QCONTEXT +Value: 0 + + +11:26:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011b9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724487968.10082 +Linkedid: 1724487957.10073 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppD + + +11:26:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011b9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 17244879 +Linkedid: 1724487957.10073 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +11:26:09 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/12@from-queue-00000acb;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487968.1 +DestLinkedid: 1724487957.10073 +DialString: 12/sip + + +11:26:09 + +Event: DeviceStateChange +Privilege: call,all +Device: Local/12@from-queue +State: INUSE + + +11:26:11 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3361 +DestChannel: PJSIP/12-000011b9 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724487968.10082 +DestLinkedid: 1724487957.10073 +DialStatus: RINGING +Device: PJSIP/12 +State: RINGING + + +11:26:11 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +DestChannel: Local/12@from-queue-00000acb;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487968.10074 +DestLinkedid: 1724487957.10073 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:26:11 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/13 +State: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 3791 +DestChannel: Local/13@from-queue-00000acc;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487968.10076 +DestLinkedid: +DialStatus: RINGING + + +11:26:12 + +Event: DialState +Privilege: call,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 300 +LastCall: 1724487825 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 4391 +DestChannel: PJSIP/10-000011b8 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724487968.10081 +DestLinkedid: 1724487957.10073 +DialStatus: RINGING + + +11:26:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/10 +State: INUSE + + +11:26:20 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 300 +LastCall: 1724487825 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-000011b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: 792102 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +11:26:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +11:26:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000011b6)= + + +11:26:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +11:26:20 + +Event: Newstate +Privilege: call,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 55 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-000011b8 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724487968.10081 +DestLinkedid: 1724487957.10073 +DialStatus: ANSWER +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Source: 79210218538 +Destination: 12 +DestinationContext: ext-local +CallerID: "79210218538" <79210218538> +DestinationChannel: PJSIP/12-000011b9 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 12 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724487968.10075 +UserField: + + +11:26:20 + +Event: QueueCallerLeave +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_CONTEXT +Value: ext-local +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 + + +11:26:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +DestChannel: Local/10@from-queue-00000acd;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487968.10078 +DestLinkedid: 1724487957.10073 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 12 +RingTime: 12 +Variable: ARG4 +Value: +BridgeUniqueid: 23ba7205-dda5-4efb-9f09-8f384a9401df +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:26:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000acb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487968.10075 +Linkedid: 1724487957.10073 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +BridgeUniqueid: 1b36ae2d-44c2-4383-ab3e-f3b2c954b3b1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:26:20 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: DIALSTATUS +Value: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/12 +State: NOT_INUSE +DestChannel: PJSIP/13-000011b7 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724487968.10080 +DestLinkedid: 1724487957.10073 +DialStatus: CANCEL +Extension: s +Application: GotoIf +AppData: 1?theend +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:26:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_PRIORITY +Value: 3 +BridgeUniqueid: 1b36ae2d-44c2-4383-ab3e-f3b2c954b3b1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:26:20 + +Event: SoftHangupRequest +Privilege: call,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +11:26:20 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +11:26:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere + + +11:26:20 + +Event: QueueMemberStatus +Privilege: agent,all +Device: Local/12@from-queue +State: NOT_INUSE +BridgeUniqueid: 1b36ae2d-44c2-4383-ab3e-f3b2c954b3b1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000acd;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487968.10078 +Linkedid: 1724487957.10073 +Variable: BRIDGEPEER +Value: PJSIP/Megafon_3-000011b6 +Queue: +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:26:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +Source: 79210218538 +Destination: 13 +DestinationContext: ext-local +CallerID: "79210218538" <79210218538> +DestinationChannel: PJSIP/13-000011b7 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 12 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724487968.10077 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10100 + + +11:26:20 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487968.10077 +Linkedid: 1724487957.10073 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10103 + + +11:27:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724488040.10083 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:27:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724488040. +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-112720 +Variable: __YEAR +Value: 2024 + + +11:27:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:27:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +11:27:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:27:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +11:27:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +11:27:20 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +11:27:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +11:27:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +11:27:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: 2 +Application: AGI +AppData: agi + + +11:27:21 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +CommandId: 545018779 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +11:27:21 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +CommandId: 1788761228 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +11:27:21 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +CommandId: 814554231 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +11:27:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724488040.100 +Linkedid: 1724488040.10083 +CommandId: 1657322269 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +11:27:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724488040.1 +Linkedid: 1724488040.10083 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +11:27:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 + + +11:27:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-000011ba + + +11:27:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: HOTDESCKCHAN +Value: Megafon_3-000011ba +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-000011ba + + +11:27:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 12 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 1 + + +11:27:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 1 + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: s +Application: NoOp +AppData: Macro Depth is 1 +Variable: MACRO_DEPTH +Value: 1 + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TTL=64 + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CDR(cnam)=79021491501 + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 3 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: __FROMQUEUEEXTEN +Value: 79021491501 +Extension: 194 +Application: Set +AppData: __FROMQUEUEEXTEN=79021491501 + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/Megafon_3-000011ba) + + +11:27:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: MacroExit +AppData: + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 8 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: QCIDPP +Value: +Extension: 194 +Application: Set +AppData: QCIDPP= + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 14 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: __RVOL_MODE +Value: dontcare +Extension: 194 +Application: ExecIf +AppData: 0?Set(__ALERT_INFO=) + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 19 +Priority: 24 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: VQ_GOSUB +Value: +Extension: 194 +Application: Set +AppData: VQ_GOSUB= + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: QPOSITION +Value: +Extension: 194 +Application: Set +AppData: QPOSITION= + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724488040.10083 +Linkedid: +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:27:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +11:27:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: 194 +Priority: 34 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: __SIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +11:27:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +11:27:25 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724487968.10078 +Linkedid: 1724487957.10073 +Variable: RTPAUDIOQOSLOSSBRIDGED +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +11:27:25 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Variable: BRIDGEPEER +Value: +DestChannel: Local/10@from-queue-00000acd;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210218538 +DestConnectedLineName: 79210218538 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724487968.10078 +DestLinkedid: 1724487957.10073 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 12 +TalkTime: 65 +Reason: caller + + +11:27:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 172448 +Linkedid: 1724487957.10073 +Variable: MACRO_CONTEXT +Value: ext-queues +Source: 79210218538 +Destination: 10 +DestinationContext: ext-local +CallerID: "79210218538" <79210218538> +DestinationChannel: PJSIP/10-000011b8 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 77 +BillableSeconds: 64 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724487968.10079 +UserField: +BridgeUniqueid: 1b36ae2d-44c2-4383-ab3e-f3b2c954b3b1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:27:25 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 1b36ae2d-44c2-4383-ab3e-f3b2c954b3b1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: GotoIf +AppData: 1?theend + + +11:27:25 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 792 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 23ba7205-dda5-4efb-9f09-8f384a9401df +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:27:25 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: ARG3 +Value: + + +11:27:25 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_CONTEXT +Value: ext-local +Device: Local/10@from-queue +State: NOT_INUSE +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:27:25 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000acd;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724487968.10079 +Linkedid: 1724487957.10073 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfil +BridgeUniqueid: 23ba7205-dda5-4efb-9f09-8f384a9401df +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:27:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210218538 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001875;avgrxjitter=000.001491;stdevrxjitter=000.000157;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing + + +11:27:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 10 +ConnectedLineName: 79210218538 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724487968.10081 +Linkedid: 1724487957.10073 +Variable: RTPAUDIOQOSMES +Value: 1 +Device: PJSIP/10 +State: NOT_INUSE +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10105 +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 301 +LastCall: 1724488045 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 79210218538 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79210218538" <79210218538> +DestinationChannel: Local/12@from-queue-00000acb;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 23 +BillableSeconds: 23 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724487957.10073 +UserField: + + +11:27:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210218538 +CallerIDName: 79210218538 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724487957.10073 +Linkedid: 1724487957.10073 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +11:27:25 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10107 +Source: 79210218538 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79210218538" <79210218538> +DestinationChannel: Local/10@from-queue-00000acd;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 77 +BillableSeconds: 77 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724487957.10073 +UserField: +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x18e1b654 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724488045.588971 +SentRTP: 40120 +SentPackets: 232 +SentOctets: 37120 +Report0SourceSSRC: 0x00080064 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 1545 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 1 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:27:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: 194 +Application: QueueLog +AppData: 194,1724488040.10083,NONE,DID,79217365096 + + +11:27:30 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:27:30 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488040.10 +Linkedid: 1724488040.10083 +Variable: QUEUEJOINTIME +Value: 1724488050 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724488050.10084 +Linkedid: 1724488040.10083 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724488050.10084 +Linkedid: 1724488040.10083 +Variable: __RINGINGSENT +Value: TRUE + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724488050.10084 +Linkedid: 1724488040.10083 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: __FROMQUEUEEXTEN +Value: 79021491501 + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: __TIMESTR +Value: 20240824-112720 + + +11:27:30 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ace;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724488050.10084 +LocalOneLinkedid: 1724488040.10083 +LocalTwoChannel: Local/12@from-queue-00000ace;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79021491501 +LocalTwoCallerIDName: 79021491501 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724488050.10085 +LocalTwoLinkedid: 1724488040.10083 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ace;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: en +DestAccountCode: + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724488050.10086 +Linkedid: 1724488040.10083 +DestChannel: Local/12@from-queue-00000ace;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724488050.10084 +DestLinkedid: 1724488040.10083 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724488050.10086 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724488050.10086 +Linkedid: 1724488040.10083 +Variable: __DIRECTION +Value: + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000011ba + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: __MON_FMT +Value: wav + + +11:27:30 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000acf;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724488050.10086 +LocalOneLinkedid: 1724488040.10083 +LocalTwoChannel: Local/13@from-queue-00000acf;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79021491501 +LocalTwoCallerIDName: 79021491501 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724488050.10087 +LocalTwoLinkedid: 1724488040.10083 +LocalOptimization: No + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488050.10088 +Linkedid: 1724488040.10083 +DestChannel: Local/13@from-queue-00000acf;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724488050.10086 +DestLinkedid: 1724488040.10083 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488050.10088 +Linkedid: 1724488040.10083 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488050.10088 +Linkedid: 1724488040.10083 +Variable: __DAY +Value: 24 + + +11:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +11:27:31 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: __FROM_DID +Value: 79217365096 + + +11:27:31 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000ad0;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724488050.10088 +LocalOneLinkedid: 1724488040.10083 +LocalTwoChannel: Local/10@from-queue-00000ad0;2 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 3 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +DestChannel: Local/10@from-queue-00000ad0;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724488050.10088 +DestLinkedid: 1724488040.10083 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 12 +Application: GotoIf +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724488050.10085 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7902 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000ace;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000ace;2 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000ace;2 +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 11 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: MACRO_CONTEXT +Value: ext-local + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: CHANCONTEXT +Value: from-queue-00000ad0;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ad0;2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724488050.10089 +Linkedid: 17244 +Extension: s +Application: Set +AppData: CHANEXTEN=10 +Variable: CHANEXTEN +Value: 10 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: __CALLEE_ACCOUNCODE +Value: + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: CALLERID(name)=79021491501 +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: __FROMQ +Value: true +Extension: 194 +Application: Goto +AppData: from-internal,13,1 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_EXTEN +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000acf;2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000acf;2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79021491501 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: 3 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-112730 +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7902149150 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Record + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: LOCAL(ARGC) +Value: 3 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: __REC_POLICY_MODE +Value: YES + + +11:27:31 + +Event: Newexten +Privilege: dialplan, +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79021491501) +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: VarS +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79021491501-20240824-112730-1724488050.10089.wav +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-112730 +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7902149150 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Record + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARGC) +Value: 3 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: __REC_POLICY_MODE +Value: YES + + +11:27:31 + +Event: Newexten +Privilege: dialplan, +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79021491501) +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: VarS +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79021491501-20240824-112730-1724488050.10087.wav +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: THISDIAL +Value: PJSIP/13/sip + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79021491501 + + +11:27:31 + +Event: Newexten +Privilege: dial +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: DB(CALLTRACE/13)=79021491501 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724488050.10089 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +11:27:31 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000ace;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724488050.10084 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: RingGroupMethod=none +Variable: RingGroupMethod +Value: none + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.1008 +Extension: s +Application: GotoIf +AppData: 0?initialized +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: __FROMEXTEN +Value: 79021491501 +Extension: s +Application: Set +AppData: __FROMEXTEN=79021491501 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79021491501 and 12 +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: su +Exten: recordcheck +Priority: 11 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724488050.1 +Linkedid: 1724488040.10083 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79021491501-20240824-112730-1724488050.10085 +Variable: MACRO_DEPTH +Value: 1 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE= + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-on +Exten: s +Priority: 1 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Variable: DIALEDPEERNAME +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724488050.10089 +Linkedid: 1724 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: GotoIf +AppData: 1?godial + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordchec +Priority: 25 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: ANSWEREDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011bb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488050.10090 +Linkedid: 1724488040.10083 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000acf;2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011bb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488050.10090 +Linkedid: 1724488040.10083 +Variable: __YEAR +Value: 2024 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011bb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488050.10090 +Linkedid: 1724488040.10083 +Variable: __RINGTIMER +Value: 60 +Extension: dstring +Application: Set +AppData: DSTRING= + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 +Variable: T +Value: PJSIP/12 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011bb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: +Exten: dstring +Priority: 9 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Variable: DIALEDPEERNUMBER +Value: 10/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011bc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-i +Exten: dstring +Priority: 17 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: __CALLFILENAME +Value: external-10-79021491501-20240824-112730-1724488050.10089 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011bc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488050.10091 +Linkedid: +Variable: __PICKUPMARK +Value: 10 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011bc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Variable: __QCONTEXT +Value: 0 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724488050 +Linkedid: 1724488040.10083 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: dstring +Application: Return +AppData: + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79021491501 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: s +Application: +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) +Variable: MACRO_DEPTH +Value: 2 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: RINGTIME_MS +Value: + + +11:27:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011bc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Variable: func-apply-sipheaders_s_4 +Value: +Extension: s +Application: While +AppData: 0 + + +11:27:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011bd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488050.10092 +Linkedid: 1724488040.10083 +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/13@from-queue-00000acf;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488050.10086 +DestLinkedid: 1724488040.10083 +DialString: 13/sip +DialStatus: RINGING + + +11:27:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011bd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488050.10092 +Linkedid: 1724488040.10083 +Variable: __FROMEXTEN +Value: 79021491501 + + +11:27:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011bd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from- +Exten: s +Priority: 1 +Uniqueid: 1724488050.10092 +Linkedid: 1724488040.10083 +Variable: __FROMQ +Value: true + + +11:27:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011bd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724488040.10083 +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:27:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011bd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724488050.10092 +Linkedid: 1724488040.10083 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +11:27:32 + +Event: DialBegin +Privilege: call,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/10-000011bc +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: + + +11:27:32 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +DestChannel: Local/12@from-queue-00000ace;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724488050.10092 +DestLinkedid: 1724488040.10083 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE +DialString: 12/sip + + +11:27:34 + +Event: DialState +Privilege: call,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 3305 +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: PJSIP/12-000011bd +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724488050.10092 +DestLinkedid: 1724488040.10083 +DialStatus: RINGING + + +11:27:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011bc +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +11:27:34 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: RINGTIME_MS +Value: 3826 +DestChannel: Local/10@from-queue-00000ad0;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488050.10088 +DestLinkedid: 1724488040.10083 +DialStatus: RINGING +Device: PJSIP/10 +State: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 301 +LastCall: 1724488045 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:27:35 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 4310 +DestChannel: Local/13@from-queue-00000acf;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488050.10086 +DestLinkedid: 1724488040.10083 +DialStatus: RINGING +Device: PJSIP/13 +State: RINGING + + +11:27:35 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:27:47 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: DIALSTATUS +Value: ANSWER + + +11:27:47 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/10 +State: INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 301 +LastCall: 1724488045 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:27:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 172448804 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(CFIGNORE)= + + +11:27:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: blkvm-clr, + + +11:27:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: +Linkedid: 1724488040.10083 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +11:27:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_DEPTH +Value: 1 + + +11:27:47 + +Event: BridgeEnter +Privilege: call,all +Channel: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-000011bc +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724488050.10091 +DestLinkedid: 1724488040.10083 +DialStatus: ANSWER +BridgeUniqueid: 62d6205c-bf50-49bd-b3ac-86256a329702 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +11:27:47 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: BRIDGEPVTCALLID +Value: 4a9cec71-49eb-4c77-8cd8-4155df668cd3 +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/12@from-queue-00000ace;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 790214915 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488050.10088 +DestLinkedid: 1724488040.10083 +DialStatus: ANSWER + + +11:27:47 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +DestChannel: Local/13@from-queue-00000acf;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488050.10086 +DestLinkedid: 1724488040.10083 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:27:47 + +Event: DialEnd +Privilege: call,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_PRIORITY +Value: +Device: Local/10@from-queue +State: INUSE +Cause: 16 +DestChannel: PJSIP/12-000011bd +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: + + +11:27:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupca +Exten: s +Priority: 1 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +11:27:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 0 + + +11:27:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: e +Exten: 13 +Priority: 1 +Uniqueid: 1724488050.10090 +Linkedid: 1724488040.10083 +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere + + +11:27:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/12 +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:27:47 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Device: Local/13@from-queue +State: NOT_INUSE +Channel: Local/13@from-queue-00000acf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724488050.10087 +Linkedid: 1724488040.10083 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_EXTEN +Value: + + +11:27:47 + +Event: Cdr +Privilege: cdr,all +Channel: Local/12@from-queue-00000ace;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724488050.10085 +Linkedid: 1724488040.10083 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Source: 79021491501 +Destination: 12 +DestinationContext: ext-local +CallerID: "79021491501" <79021491501> +DestinationChannel: PJSIP/12-000011bd +LastApplication: Dial +LastData: PJSIP/12/sip + + +11:27:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79021491501 +Destination: 13 +DestinationContext: ext-local +CallerID: "79021491501" <79021491501> +DestinationChannel: PJSIP/13-000011bb +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 16 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724488050.10087 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10113 +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: 621c128e-9253-4ef3-a58b-ee2f4443d07c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +11:27:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000ad0;1 + + +11:27:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:27:57 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 62d6205c-bf50-49bd-b3ac-86256a329702 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +11:27:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: ARG2 +Value: 10 +BridgeUniqueid: 62d6205c-bf50-49bd-b3ac-86256a329702 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:27:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: ARG5 +Value: + + +11:27:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Loc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021491501 +ConnectedLineName: 79021491501 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:27:57 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистрат +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724488050.10091 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing + + +11:27:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724488050.10089 +Linkedid: 1724488040.10083 +Variable: MACRO_EXTEN +Value: +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 302 +LastCall: 1724488077 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: +Source: 79021491501 +Destination: 10 +DestinationContext: ext-local +CallerID: "79021491501" <79021491501> +DestinationChannel: PJSIP/10-000011bc +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 26 +BillableSeconds: 10 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724488050.10089 +UserField: + + +11:27:57 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: BRIDGEPEER +Value: +Cause: 16 +DestChannel: Local/10@from-queue-00000ad0;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021491501 +DestConnectedLineName: 79021491501 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488050.10088 +DestLinkedid: 1724488040.10083 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 17 +TalkTime: 10 +Reason: agent +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +BridgeUniqueid: 621c128e-9253-4ef3-a58b-ee2f4443d07c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:27:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: ext-queues +Family: refreshcallhistory +ActionID: 10115 +BridgeUniqueid: 621c128e-9253-4ef3-a58b-ee2f4443d07c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_CONTEXT + + +11:27:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: + + +11:27:57 + +Event: VarSet +Privilege: dialplan,all +Channel: P +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10116 +Source: 79021491501 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79021491501" <79021491501> +DestinationChannel: Local/12@from-queue-00000ace;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 27 +BillableSeconds: 27 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724488040.10083 +UserField: + + +11:27:57 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-000011ba +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021491501 +CallerIDName: 79021491501 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724488040.10083 +Linkedid: 1724488040.10083 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Source: 79021491501 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79021491501" <79021491501> +DestinationChannel: Local/10@from-queue-00000ad0;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 26 +BillableSeconds: 26 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724488040.10083 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10117 + + +11:36:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 2 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: 79217365096 +Application: Gosub +AppData: sub-record-check,s,1(in,79217365096,dontcare) +Variable: LOCAL(ARG1) +Value: in + + +11:36:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: __DAY +Value: 1724488609 +Extension: s +Application: Set +AppData: __DAY=24 + + +11:36:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: +Value: unknown + + +11:36:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 2 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: in +Application: Set +AppData: FROMEXTEN=unknown +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:36:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: recordcheck +Application: Goto +AppData: dontcare +Variable: LOCAL(ARGC) +Value: 3 + + +11:36:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 5 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: ARG2 +Value: +Extension: in +Application: Return +AppData: + + +11:36:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 1 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GotoIf +AppData: 0?blacklisted + + +11:36:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 10 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: GOSUB_RETVAL +Value: +Extension: 79217 +Application: ExecIf +AppData: 1 ?Set(CALLERID(name)=79524804347) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:36:49 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: __RINGINGSENT +Value: TRUE +Extension: 79217365096 +Application: Answer +AppData: +Device: PJSIP/Megafon_3 +State: INUSE + + +11:36:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 14 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:36:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +11:36:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 21 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(name-pres)=allowed_not_screened + + +11:36:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: 2 +Application: AGI +AppData: agi + + +11:36:51 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +CommandId: 2003145495 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +11:36:51 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +CommandId: 1239104913 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +11:36:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +CommandId: 754276024 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +11:36:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +11:36:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724488609.1009 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +11:36:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: AMPUSER +Value: 79524804347 +Extension: s +Application: Set +AppData: AMPUSER=79524804347 + + +11:36:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +11:36:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +11:36:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +11:36:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +11:36:51 + +Event: VarSet +Privilege: dial +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:36:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +11:36:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +11:36:51 + +Event: VarSet +Privilege: dial +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +11:36:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +11:36:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +11:36:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +11:36:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 7952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +11:36:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +11:36:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +11:36:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:36:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:36:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +11:36:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 44 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: 194 +Application: Set +AppData: VQ_AANNOUNCE= +Variable: QAANNOUNCE +Value: + + +11:37:00 + +Event: VarS +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 50 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Extension: 194 +Application: Set +AppData: VQ_MAXWAIT= +Variable: QMAXWAIT +Value: 600 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Variable: QUEUEJOINTIME +Value: 1724488620 +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queu +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724488620.10094 +Linkedid: 1724488609.10093 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000011be + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724488620.10094 +Linkedid: 1724488609.10093 +Variable: __MON_FMT +Value: wav + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: __SIGNORE +Value: TRUE + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 172448862 +Linkedid: 1724488609.10093 +Variable: __DAY +Value: 24 + + +11:37:00 + +Event: Newchannel +Privilege: call,all +Channel: Local/13@from-queue-00000ad2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ad1;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724488620.10094 +LocalOneLinkedid: 1724488609.10093 +LocalTwoChannel: Local/12@from-queue-00000ad1;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524804347 +LocalTwoCallerIDName: 79524804347 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724488620.10095 +LocalTwoLinkedid: 1724488609.10093 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ad1;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724488620.10094 +DestLinkedid: 1724488609.10093 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724488620.10096 +Linkedid: 1724488609.10093 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: DIA +Value: 194 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724488620.10096 +Linkedid: 1724488609.10093 +Variable: +Value: + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: __QC_CONFIRM +Value: 0 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: QAGENT +Value: 12 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: __MON_FMT +Value: wav +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +11:37:00 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000ad2;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724488620.10096 +LocalOneLinkedid: 1724488609.10093 +LocalTwoChannel: Local/13@from-queue-00000ad2;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524804347 +LocalTwoCallerIDName: 79524 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488620.10098 +Linkedid: 1724488609.10093 +DestChannel: Local/13@from-queue-00000ad2;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724488620.10096 +DestLinkedid: 1724488609.10093 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488620.10098 +Linkedid: 1724488609.10093 +Variable: __FROMQUEUEEXTEN +Value: 79524804347 +Extension: 12 +Application: GotoIf +AppData: 1?194,1 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488620.10098 +Linkedid: 1724488609.10093 +Variable: __TIMESTR +Value: 20240824-113649 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724488620.10095 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: +AppData: CHANEXTENCONTEXT=12@from-queue-00000ad1;2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: HOTDESCKCHAN +Value: 12@from-queue-00000ad1;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000ad1;2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79524804347 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 2 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: QAGENT +Value: 13 +Extension: 13 +Application: Set +AppData: __FROMQ=true + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG3 +Value: 0 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: AMPUSER +Value: 79524804347 +Extension: s +Application: Set +AppData: AMPUSER=79524804347 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-ca +Exten: s +Priority: 29 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 7952480 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488620.10098 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: CDR(cnam)=79524804347 +Variable: __YEAR +Value: 2024 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: __RVOL_MODE +Value: dontcare + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:37:00 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 10 +Priority: 1 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: __DIRECTION +Value: + + +11:37:00 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000ad1;1 +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724488620.10094 +Linkedid: 1724488609.10093 +LocalOneChannel: Local/10@from-queue-00000ad3;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724488620.10098 +LocalOneLinkedid: 1724488609.10093 +LocalTwoChannel: Local/10@from-queue-00000ad3;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524804347 +LocalTwoCallerIDName: 79524804347 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724488620.10099 +LocalTwoLinkedid: 1724488609.10093 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000ad3;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724488620.10098 +DestLinkedid: 1724488609.10093 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 9 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: ex +Priority: 6 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recor +Priority: 16 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724488620.10095 +Linkedid: 1724488 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79524804347-20240824-113700-1724488620.10095 +Variable: MACRO_DEPTH +Value: 1 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: Local/12@from-queue-00000ad1;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000ad1;2 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 3 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: 10 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 2 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: 10 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) +Variable: __RINGTIMER +Value: 60 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: ARG5 +Value: 0 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724488620.10099 +Variable: TOUCH_MONITOR +Value: 1724488620.10099 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000ad3;2 +Variable: CHANEXTENCONTEXT +Value: 10@from-queue-00000ad3;2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000ad3;2 +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724488620.10 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: CALLERID(number)=79524804347 +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +11:37:00 + +Event: Newe +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724488620. +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: __FROMEXTEN=79524804347 +Variable: MACRO_DEPTH +Value: 1 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724488 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-rec +Exten: recordcheck +Priority: 19 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: __CALLFILENAME +Value: external-13-79524804347-20240824-113700-1724488620.10097 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79524804347-20240824-113700-1724488620.10097 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 172448 +Linkedid: 1724488609.10093 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000ad2;2 +Variable: MACRO_DEPTH +Value: 1 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: ARG3 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: EXTHASCW= + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 18 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: DB_RESULT +Value: 13 +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7952480 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: +AppData: 0?Set(ALERT_INFO=) + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:37:00 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724488620.10098 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL + + +11:37:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609. +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 2 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:37:01 + +Event: VarSet +Privilege: d +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10097 +Linkedid: +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) +Variable: MACRO_DEPTH +Value: 2 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: RINGTIME_MS +Value: + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: CALLTYPE +Value: external + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79524804347-20240824-113700-1724488620.10099 +Variable: MACRO_DEPTH +Value: 1 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000ad3;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000ad3;2 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG2 +Value: + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +11:37:01 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: EXTHASCW +Value: + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 26 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: dstring +Application: Set +AppData: DEVICES=10 +Variable: DEVICES +Value: 10 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.100 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724488620.10 +Linkedid: 1724488609.10093 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_3 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: PROGRESSTIME_MS +Value: + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7952 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 55 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: PROGRESSTIME +Value: + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011bf +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 17244 +Linkedid: 1724488609.10093 +Variable: __REC_POLICY_MODE +Value: YES + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488620.10100 +Linkedid: 1724488609.10093 +Variable: __RINGTIMER +Value: 60 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011bf +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488620.10100 +Linkedid: 1724488609.10093 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011bf +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: Регистратура_2 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724488620.10100 +Linkedid: 1724488609.10093 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +11:37:01 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/12-000011c0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724488620.10100 +Linkedid: 1724488609.10093 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011c0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488620.10101 +Linkedid: 1724488609.10093 +Variable: __MON_FMT +Value: wav + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011c0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-interna +Exten: s +Priority: 1 +Uniqueid: 1724488620.10101 +Linkedid: 1724488609.10093 +Variable: __RINGTIMER +Value: 60 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011c0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488620.10101 +Linkedid: 1724488609.10093 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011c0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724488620.1 +Linkedid: 1724488609.10093 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +11:37:01 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/10-000011c1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488620.10101 +Linkedid: 1724488609.10093 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +DestChannel: PJSIP/13-000011bf +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524804347 +DestConnectedLineName: 79524804347 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724488620.10100 +DestLinkedid: 1724488609.10093 +DialString: 13/sip +Variable: __CALLFILENAME +Value: external-10-79524804347-20240824-113700 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Variable: __EXTTOCALL +Value: 10 + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000011be + + +11:37:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Variable: __DIRECTION +Value: +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: Local/13@from-queue +State: INUSE + + +11:37:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: + + +11:37:01 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7952 +CallerIDName: +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724488620.10098 +Linkedid: 1724488609.10093 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/10-000011c1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524804347 +DestConnectedLineName: 79524804347 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724488620.10102 +DestLinkedid: 1724488609.10093 +DialString: 10/sip +Device: Local/12@from-queue +State: INUSE + + +11:37:01 + +Event: DialState +Privilege: call,all +Device: Local/10@from-queue +State: INUSE +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +DestChannel: Local/12@from-queue-00000ad1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524804347 +DestConnectedLineName: 79524804347 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488620.10094 +DestLinkedid: 1724488609.10093 +DialStatus: RINGING + + +11:37:03 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011c1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 195 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 302 +LastCall: 1724488077 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:37:03 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: RINGTIME_MS +Value: 2921 +DestChannel: Local/10@from-queue-00000ad3;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524804347 +DestConnectedLineName: 79524804347 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488620.10098 +DestLinkedid: 1724488609.10093 +DialStatus: RINGING + + +11:37:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3507 +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing + + +11:37:03 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/12 +State: RINGING +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +DestChannel: Local/12@from-queue-00000ad1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524804347 +DestConnectedLineName: 79524804347 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488620.10094 +DestLinkedid: 1724488609.10093 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:37:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011bf +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724488620.10100 +Linkedid: 1724488609.10093 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +11:37:04 + +Event: DialState +Privilege: call,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: RINGTIME_MS +Value: 4196 +DestChannel: Local/13@from-queue-00000ad2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524804347 +DestConnectedLineName: 79524804347 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488620.10096 +DestLinkedid: 1724488609.10093 +DialStatus: RINGING + + +11:37:05 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Device: PJSIP/10 +State: INUSE +Channel: PJSIP/10-000011c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Variable: DIALEDPEERNUMBER +Value: 10/sip +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 302 +LastCall: 1724488077 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:37:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 2 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Variable: __MACRO_RESULT +Value: +Extension: s +Application: Set +AppData: __MACRO_RESULT= + + +11:37:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +11:37:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 2 +Extension: +Application: Macro +AppData: blkvm-clr, + + +11:37:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Variable: MACRO_PRIORIT +Value: macro-dial-one +Extension: s +Application: MacroExit +AppData: + + +11:37:05 + +Event: DialEnd +Privilege: call,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +DestChannel: PJSIP/10-000011c1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524804347 +DestConnectedLineName: 79524804347 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724488620.10102 +DestLinkedid: 1724488609 + + +11:37:05 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000ad3;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724488620.10098 +Linkedid: 1724488609.10093 +BridgeUniqueid: f8d56258-4e5c-46e7-975a-555bcc8c5108 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 05095522-548e-44a2-a8e7-fc31f7396f25 + + +11:37:05 + +Event: HangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +DestChannel: Local/12@from-queue-00000ad1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524804347 +DestConnectedLineName: 79524804347 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488620.10094 +DestLinkedid: 1724488609.10093 +DialStatus: CANCEL +Device: Local/10@from-queue +State: INUSE + + +11:37:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000ad2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524804347 +DestConnectedLineName: 79524804347 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488620.10096 +DestLinkedid: 1724488609.10093 +DialStatus: CANCEL +Variable: ARG1 +Value: novm + + +11:37:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: ARG1 +Value: +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:37:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: ARG4 +Value: +Source: 79524804347 +Destination: 12 +DestinationContext: ext-local +CallerID: "79524804347" <79524804347> +DestinationChannel: PJSIP/12-000011c0 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724488620.10095 +UserField: +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +11:37:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:37:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Source: 79524804347 +Destination: 13 +DestinationContext: ext-local +CallerID: "79524804347" <79524804347> +DestinationChannel: PJSIP/13-000011bf +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724488620.10097 +UserField: +Extension: s +Application: GotoIf +AppData: + + +11:37:05 + +Event: Device +Privilege: call,all +Channel: Local/12@from-queue-00000ad1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724488620.10095 +Linkedid: 1724488609.10093 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE + + +11:37:05 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-000011bf +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724488620.10100 +Linkedid: 1724488609.10093 +Queue: 195 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: Local/10@from-queue-00000ad3;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524804347 +DestConnectedLineName: 79524804347 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724488620.10098 +DestLinkedid: 1724488609.10093 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 5 +RingTime: 5 +BridgeUniqueid: 7662bfe0-0738-45cb-a68f-e4ca4b922d3d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:37:05 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/10@from-queue-00000ad3;1 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724488620.10097 +Linkedid: 1724488609.10093 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: 7662bfe0-0738-45cb-a68f-e4ca4b922d3d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:37:05 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/13@FROM-QUEUE +ActionID: 10123 +BridgeUniqueid: 7662bfe0-0738-45cb-a68f-e4ca4b922d3d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: BRIDGEPEER + + +11:37:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:37:42 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524804347 +ConnectedLineName: 79524804347 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724488620.10102 +Linkedid: 1724488609.10093 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: f8d56258-4e5c-46e7-975a-555bcc8c5108 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:37:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: ANSWEREDTIME_MS +Value: 36425 + + +11:37:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_EXTEN +Value: 10 +BridgeUniqueid: f8d56258-4e5c-46e7-975a-555bcc8c5108 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +11:37:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724488620.10099 +Linkedid: 1724488609.10093 +Variable: MACRO_EXTEN +Value: +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: +Source: 79524804347 +Destination: 10 +DestinationContext: ext-local +CallerID: "79524804347" <79524804347> +DestinationChannel: PJSIP/10-000011c1 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 41 +BillableSeconds: 36 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724488620.10099 +UserField: + + +11:37:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10126 + + +11:37:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011be +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000201; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=078.826679; + + +11:37:42 + +Event: Cdr +Privilege: cdr,all +AccountCode: +Source: 79524804347 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79524804347" <79524804347> +Channel: PJSIP/Megafon_3-000011be +DestinationChannel: Local/10@from-queue-00000ad3;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 41 +BillableSeconds: 41 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724488609.10093 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524804347 +CallerIDName: 79524804347 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724488609.10093 +Linkedid: 1724488609.10093 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10127 + + +11:38:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T11 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +11:38:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T11 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: DB_RESULT +Value: EXTENSION +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 1 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=62 + + +11:38:43 + +Event: VarSet +Privilege: dialplan +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=62) + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723. +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME= + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 30 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=62 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: __EXTTOCALL +Value: 10 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 8 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 0?caller + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 10 +Uniqueid: 1724488723.10103 +Linkedid: 17244 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 2?Set(CALLEE_PRI=10) + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/S +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=internal-10-62-20240824-113843-1724488723.10103 +Variable: MACRO_DEPTH +Value: 1 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724488723.10103 +Linkedid: 17244887 +Variable: __RECORD_ID +Value: IAX2/Secret_life-1893 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=IAX2/Secret_life-1893 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG2 +Value: + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: exten +Priority: 12 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724488723.10103 +Linkedid: 17 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Extension: s +Application: Got +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.101 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 17 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Extension: ctset +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:38:43 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Extension: s +Application: Set +AppData: __CWIGNORE= +Variable: MACRO_DEPTH +Value: 2 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALEDTIME +Value: + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488723.10104 +Linkedid: 1724488723.10103 +Variable: __REC_STATUS +Value: RECORDING + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724488723.10104 +Linkedid: 1724488723.10103 +Variable: __DAY +Value: 24 + + +11:38:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 62 +ConnectedLineName: Регистратура +Language: ru +AccountCode: +Context: func-apply-siphead +Exten: s +Priority: 2 +Uniqueid: 1724488723.10104 +Linkedid: 1724488723.10103 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +11:38:43 + +Event: DialBegin +Privilege: call,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724488723.10104 +Linkedid: 1724488723.10103 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +11:38:43 + +Event: NewConnectedLine +Privilege: call,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 + + +11:38:45 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: IAX2/Secret_life-1893 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 2146 +DestChannel: PJSIP/10-000011c2 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 62 +DestConnectedLineName: Регистратура +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724488723.10104 +DestLinkedid: 1724488723.10103 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:38:48 + +Event: BridgeCreate +Privilege: call,all +Channel: IAX2/Secret_life-1893 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: DIALEDPEERNUMBER +Value: 10/sip +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Device: PJSIP/10 +State: INUSE +DestChannel: PJSIP/10-000011c2 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 62 +DestConnectedLineName: Регистратура +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: +DestPriority: 1 +DestUniqueid: 1724488723.10104 +DestLinkedid: 1724488723.10103 +DialStatus: ANSWER +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: 7f4652db-b605-4e42-b7fa-a642c764c43d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:38:48 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 7f4652db-b605-4e42-b7fa-a642c764c43d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: IAX2/Secret_life-1893 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: BRIDGEPVTCALLID +Value: 6de3ca2d-1234-4884-843c-85b014886060 + + +11:41:22 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 62 +ConnectedLineName: Регистратура +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724488723.10104 +Linkedid: 1724488723.10103 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:41:22 + +Event: BridgeLeave +Privilege: call,all +Channel: IAX2/Secret_life-1893 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 62 +CallerIDName: Регистратура_3 +ConnectedLineNum: 62 +ConnectedLineName: Регистратура +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724488723.10104 +Linkedid: 1724488723.10103 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 7f4652db-b605-4e42-b7fa-a642c764c43d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:41:22 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: ARG3 +Value: 0 + + +11:41:22 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_EXTEN +Value: + + +11:41:22 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Secret_life-1893 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 62 +CallerIDName: Регистрат +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +11:41:22 + +Event: UserEvent +Privilege: user,all +Channel: IAX2/SECRET_LIFE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 62 +CallerIDName: Регистратура +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724488723.10103 +Linkedid: 1724488723.10103 +Variable: MACRO_PRIORITY +Value: 1 +BridgeUniqueid: 7f4652db-b605-4e42-b7fa-a642c764c43d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10129 + + +11:42:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524804347 +Priority: 1 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: 989524804347 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, +Variable: ARG3 +Value: + + +11:42:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724488949.10105 +Linkedid: 1724488 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +11:42:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: AMPUSER +Value: 10 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:42:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +11:42:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=10) + + +11:42:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:42:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: Set +AppData: AMPUSERCID=10 +Variable: AMPUSERCID +Value: 10 + + +11:42:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) +Variable: MACRO_DEPTH +Value: 1 + + +11:42:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:42:29 + +Event: VarSet +Privilege: +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:42:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: Set +AppData: CDR(cnum)=10 +Variable: MACRO_DEPTH +Value: 1 + + +11:42:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524804347 +Priority: 2 +Uniqueid: 1724488949.10 +Linkedid: 1724488949.10105 +Variable: LOCAL(ARG2) +Value: 989524804347 +Extension: 989524804347 +Application: Gosub +AppData: sub-record-check,s,1(out,989524804347,dontcare) + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __MONTH=08 + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: s +Priority: 10 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: NoOp +AppData: Recordings initialized +Variable: __MON_FMT +Value: wav + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 2 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: out +Application: Set +AppData: RECMODE=yes +Variable: RECMODE +Value: yes + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: recor +Application: Goto +AppData: yes +Variable: LOCAL(ARGC) +Value: 3 + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989524804347-10-20240824-114229-1724488949.10105 +Variable: __CALLFILENAME +Value: out-989524804347-10-20240824-114229-1724488949.10 + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: out +Application: Return +AppData: +Variable: ARG3 +Value: + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524804347 +Priority: 6 +Uniqueid: 1724488949.10105 +Linkedid: 172448 +Variable: _ROUTENAME +Value: Megafon +Extension: 989524804347 +Application: Set +AppData: MOHCLASS=default + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524804347 +Priority: 11 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: 989524804347 +Application: Macro +AppData: dialout-trunk,6,+79524804347,,off +Variable: _NODEST +Value: + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: ARG1 +Value: 6 +Extension: s +Application: Macro +AppData: outbound-callerid,6 + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: ExecIf +AppData: 0? +Variable: MACRO_DEPTH +Value: 2 + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 17244889 +Linkedid: 1724488949.10105 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 12 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: ExecIf +AppData: 0?Set(ALLOWTHISROUTE=YES) +Variable: MACRO_DEPTH +Value: 2 + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратур +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?normcid + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: Set +AppData: TRUNKOUTCID=7816 +Variable: MACRO_DEPTH +Value: 2 + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: Set +AppData: TIOHIDE=no +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TIOHIDE +Value: no + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 +Variable: MACRO_DEPTH +Value: 2 + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 14 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() +Variable: MACRO_DEPTH +Value: 1 + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 18 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +11:42:30 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79524804347) + + +11:42:30 + +Event: VarSet +Privilege: d +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HASH(__SIPHEADERS,Alert-Info)=unset + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: RINGTIME_MS +Value: + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +Variable: ROUTEID +Value: 1 + + +11:42:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +Variable: __MONTH +Value: 08 + + +11:42:30 + +Event: Newexten +Privilege: +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: +Priority: 5 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +Variable: sipheader +Value: unset +Extension: s +Application: Set +AppData: sipheader=unset + + +11:42:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +Extension: s +Application: EndWhile +AppData: +Variable: sipkey +Value: + + +11:42:30 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011c4 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989524804347 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724488949.10106 +DestLinkedid: 1724488949.10105 +DialString: +79524804347@rt_769402 + + +11:42:30 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Extension: 989524804347 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Variable: RINGTIME_MS +Value: 319 +Device: PJSIP/10 +State: INUSE +DestChannel: PJSIP/rt_769402-000011c4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989524804347 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989524804347 +DestPriority: 1 +DestUniqueid: 1724488949.10106 +DestLinkedid: 1724488949.10105 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:42:40 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: DIALSTATUS +Value: ANSWER +Device: PJSIP/rt_769402 +State: INUSE + + +11:42:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 1 +Uniqueid: 1724488949.101 +Linkedid: 1724488949.10105 +Variable: LOCAL(ARGC) +Value: 6 + + +11:42:40 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/10-000011c3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +11:42:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +BridgeUniqueid: 699bcd47-100b-4414-a5be-ce3702fda306 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPEER +Value: PJSIP/rt_769402-000011c4 + + +11:42:45 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4da95585 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724488965.373344 +SentRTP: 1724528800 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x5449cd79 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 32576 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:42:50 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4da95585 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724488970.374559 +SentRTP: 1724568960 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x5449cd79 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 32826 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:43:00 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4da95585 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724488980.373372 +SentRTP: 1724648800 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0x5449cd79 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 33326 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:43:05 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4da95585 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724488985.372963 +SentRTP: 1724688800 +SentPackets: 1250 +SentOctets: 200000 +Report0SourceSSRC: 0x5449cd79 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 33576 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:43:15 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4da95585 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724488995.373621 +SentRTP: 1724768960 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0x5449cd79 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34076 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:43:25 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4da95585 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489005.373738 +SentRTP: 1724848960 +SentPackets: 2251 +SentOctets: 360160 +Report0SourceSSRC: 0x5449cd79 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34576 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:43:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000250;maxrxjitter=000.001875;avgrxjitter=000.001266;stdevrxjitter=000.000168;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +11:43:29 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/10-000011c3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000168; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +11:43:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: DIALEDTIME_MS +Value: 59841 +BridgeUniqueid: 699bcd47-100b-4414-a5be-ce3702fda306 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:43:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:43:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +11:43:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524804347 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724488949.10105 +Linkedid: 1724488949.10105 +Variable: RTPAUDIOQOSLOSS +Value: minrxl +BridgeUniqueid: 699bcd47-100b-4414-a5be-ce3702fda306 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:43:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524804347 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724488949.10106 +Linkedid: 1724488949.10105 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10131 +Source: 78162769402 +Destination: 989524804347 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011c4 +LastApplication: Dial +LastData: PJSIP/+79524804347@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 59 +BillableSeconds: 49 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724488949.10105 +UserField: +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/rt_769402 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633693690 +Priority: 1 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489157.1 +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011c5 + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:45:57 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489157.10107 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633693690 +Priority: 2 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989633693690 +Application: Gosub +AppData: sub-record-check,s,1(out,989633693690,dontcare) + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489157.10107 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489157.10107 +Linkedid: 172448 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: __CALLFILENAME +Value: out-989633693690-10-20240824-114557-1724489157.10107 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989633693690-10-20240824-114557-1724489157.10107 + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989633693690-10-20240824-114557-1724489157.10107.wav + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633693690 +Priority: 7 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157. +Variable: MOHCLASS +Value: default +Extension: 989633693690 +Application: Set +AppData: MOHCLASS=default + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633693690 +Priority: 11 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_EXTEN +Value: 989633693690 +Extension: 989633693690 +Application: Macro +AppData: dialout-trunk,6,+79633693690,,off + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +11:45:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79633693690 + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:45:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79633693690 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79633693690) + + +11:45:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:45:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Extension: s +Application: Dial +AppData: PJSIP/+79633693690@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79633693690^989633693690^6^1724489157^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +11:45:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: PROGRESSTIME +Value: + + +11:45:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +Variable: __REC_STATUS +Value: RECORDING + + +11:45:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +Variable: __DAY +Value: 24 + + +11:45:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +11:45:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +11:45:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489157.1 +Linkedid: 1724489157.10107 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +11:45:58 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633693690 +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011c6 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989633693690 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489157.10108 +DestLinkedid: 1724489157.10107 +DialString: +79633693690@rt_769402 + + +11:45:58 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: INUSE +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: RINGTIME_MS +Value: 303 +DestChannel: PJSIP/rt_769402-000011c6 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989633693690 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989633693690 +DestPriority: 1 +DestUniqueid: 1724489157.10108 +DestLinkedid: 1724489157.10107 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:46:01 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011c5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: PROGRESSTIME_MS +Value: 3744 +DestChannel: PJSIP/rt_769402-000011c6 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989633693690 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989633693690 +DestPriority: 1 +DestUniqueid: 1724489157.10108 +DestLinkedid: 1724489157.10107 +DialStatus: PROGRESS + + +11:46:06 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633693690 +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x26591b39 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489166.647943 +SentRTP: 1724529160 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xb2448463 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 33627 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:46:11 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633693690 +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x26591b39 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489171.647535 +SentRTP: 1724569000 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0xb2448463 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 33877 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:46:16 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633693690 +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x26591b39 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489176.649043 +SentRTP: 1724609160 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0xb2448463 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34127 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:46:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633693690 +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +Variable: LOCAL(AR +Value: + + +11:46:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 172448915 +Linkedid: 1724489157.10107 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +11:46:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +Variable: BRIDGEPEER +Value: PJSIP/10-000011c5 +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-000011c6 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989633693690 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489157.10108 +DestLinkedid: 1724489157.10107 +DialStatus: ANSWER +BridgeUniqueid: 1441b672-e813-4341-8ad7-f334100623d5 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +11:46:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: BRIDGEPVTCALLID +Value: 0e5a84e3-64cf-4150-b081-07299c9df33a + + +11:46:26 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x26591b39 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489186.648274 +SentRTP: 1724689000 +SentPackets: 1250 +SentOctets: 200000 +Report0SourceSSRC: 0xb2448463 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34627 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:46:31 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x26591b39 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489191.647775 +SentRTP: 1724729000 +SentPackets: 1500 +SentOctets: 240000 +Report0SourceSSRC: 0xb2448463 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34877 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 11 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:46:36 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x26591b39 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489196.647993 +SentRTP: 1724769160 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0xb2448463 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 35127 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:46:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:46:40 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011c5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 1441b672-e813-4341-8ad7-f334100623d5 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:46:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_EXTEN +Value: + + +11:46:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633693690 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:46:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633693690 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489157.10108 +Linkedid: 1724489157.10107 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085. +BridgeUniqueid: 1441b672-e813-4341-8ad7-f334100623d5 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:46:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOS +Value: ssrc=1601191235;themssrc=3369561555;lp=0;rxjitter=0.000000;rxcount=1915;txjitter=0.001125;txcount=191 +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +11:46:40 + +Event: UserEvent +Privilege: cdr,all +Channel: PJSIP/10-000011c5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633693690 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489157.10107 +Linkedid: 1724489157.10107 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000168; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 78162769402 +Destination: 989633693690 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011c6 +LastApplication: Dial +LastData: PJSIP/+79633693690@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 42 +BillableSeconds: 18 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489157.10107 +UserField: + + +11:46:40 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10133 + + +11:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989212057134 +Priority: 1 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: ARG3 +Value: +Extension: 989212057134 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +11:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEP +Value: + + +11:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724489227.1 +Linkedid: 1724489227.10109 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: MACRO_DEPTH +Value: 1 + + +11:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724489 +Linkedid: 1724489227.10109 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +11:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-us +Exten: s +Priority: 14 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=10) +Variable: MACRO_DEPTH +Value: 1 + + +11:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 +Variable: MACRO_DEPTH +Value: 1 + + +11:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 26 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(GROUP(concurrency_limit)=10) + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?continue + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: CDR(cnum)=10 + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989212057134 +Priority: 2 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: 989212057134 +Application: Gosub +AppData: sub-record-check,s,1(out,989212057134,dontcare) +Variable: L +Value: out + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724489227.10109 +Linkedid: 17 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724489227.101 +Linkedid: 1724489227.10109 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989212057134-10-20240824-114707-1724489227.10109 +Variable: RECFROMEXTEN +Value: 10 + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __RECORD_ID +Value: PJSIP/10-000011c7 + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: out +Application: Return +AppData: +Variable: ARGC +Value: + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989212057134 +Priority: 6 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: _ROUTENAME +Value: Megafon +Extension: 989212057134 +Application: Set +AppData: MOHCLA + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989212057134 +Priority: 10 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: _NODEST +Value: +Extension: 989212057134 +Application: Set +AppData: _NODEST= + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 6 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_NUMBER=+79212057134 + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=) + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 12 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALLOWTHISROUTE=YES) + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: MACRO_DEPTH +Value: 2 + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 22 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(EMERGENCYCID=) + + +11:47:08 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 39 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=prohib_passed_screen) + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 14 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 18 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) +Variable: MACRO_DEPTH +Value: 1 + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: s +Application: Macro +AppData: dialout-trunk-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 21 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: GotoIf +AppData: 0?bypass,1 + + +11:47:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +79212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 23 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(name,i)=CID + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 27 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: __~HASH~SIPHEADERS~Alert-Info~ +Value: unset +Extension: s +Application: Set +AppData: HASH(__SIPHEADERS,Alert-Info)=unset + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: s +Application: Dial +AppData: PJSIP/+79212057134@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79212057134^989212057134^6^1724489227^^78162769402) +Variable: RINGTIME +Value: + + +11:47:08 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +Variable: ROUTENAME +Value: Megafon + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +Variable: __YEAR +Value: 2024 + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_76940 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +Variable: LOCAL(ARGC) +Value: 1 +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 5 +Uniqueid: 1724489227.1011 +Linkedid: 1724489227.10109 +Extension: s +Application: Set +AppData: sipheader=unset +Variable: WHILE_0 +Value: func-apply-sipheaders,s,4 + + +11:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 12 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +Extension: s +Application: EndWhile +AppData: +Variable: END_WHILE_0 +Value: func-apply-sipheaders,s,13 + + +11:47:08 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-000011c8 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989212057134 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489227.10110 +DestLinkedid: 1724489227.10109 +DialString: + + +11:47:08 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 + + +11:47:08 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Extension: 989212057134 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 331 +DestChannel: PJSIP/rt_769402-000011c8 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989212057134 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989212057134 +DestPriority: 1 +DestUniqueid: 1724489227.10110 +DestLinkedid: 1724489227.10109 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse + + +11:47:08 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:47:10 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011c7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: PROGRESSTIME_MS +Value: 2618 +DestChannel: PJSIP/rt_769402-000011c8 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989212057134 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989212057134 +DestPriority: 1 +DestUniqueid: 1724489227.10110 +DestLinkedid: 1724489227.10109 +DialStatus: PROGRESS + + +11:47:15 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989212057134 +Priority: 1 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3ffbb1a1 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489235.756539 +SentRTP: 1724529064 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x8c03f48e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 24759 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:47:25 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989212057134 +Priority: 1 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3ffbb1a1 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489245.755994 +SentRTP: 1724609064 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x8c03f48e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25259 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:47:30 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989212057134 +Priority: 1 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3ffbb1a1 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489250.761521 +SentRTP: 1724649224 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0x8c03f48e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25509 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:47:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989212057134 +Priority: 1 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +11:47:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +11:47:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +Variable: BRIDGEPEER +Value: PJSIP/10-000011c7 +DestChannel: PJSIP/rt_769402-000011c8 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989212057134 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489227.10110 +DestLinkedid: 1724489227.10109 +DialStatus: ANSWER +BridgeUniqueid: deedaedd-18f5-4e8c-9a9c-72538c763b8b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +11:47:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: BRIDGEPVTCALLID +Value: 6ae8398d-b797-4ce1-86fa-56e611dc8577 + + +11:47:35 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3ffbb1a1 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489255.756347 +SentRTP: 1724689224 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0x8c03f48e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25759 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:47:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:47:40 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011c7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: deedaedd-18f5-4e8c-9a9c-72538c763b8b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:47:40 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: deedaedd-18f5-4e8c-9a9c-72538c763b8b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/10-000011c7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: ARG1 +Value: + + +11:47:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:47:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011c8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989212057134 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489227.10110 +Linkedid: 1724489227.10109 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend + + +11:47:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.1010 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Variable: MACRO_CONTEXT +Value: +Source: 78162769402 +Destination: 989212057134 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011c8 +LastApplication: Dial +LastData: PJSIP/+79212057134@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 32 +BillableSeconds: 6 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489227.10109 +UserField: + + +11:47:40 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: h +Context: from-internal +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Channel: PJSIP/10-000011c7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989212057134 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724489227.10109 +Linkedid: 1724489227.10109 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000198; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:47:40 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10135 + + +11:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989539084114 +Priority: 1 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:47:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +11:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489273.1 +Linkedid: 1724489273.10111 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011c9 + + +11:47:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724489273.10111 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +11:47:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:47:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:47:53 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489273.10111 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989539084114 +Priority: 2 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989539084114 +Application: Gosub +AppData: sub-record-check,s,1(out,989539084114,dontcare) + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489273.10111 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489273.10111 +Linkedid: 172448 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: __CALLFILENAME +Value: out-989539084114-10-20240824-114753-1724489273.10111 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989539084114-10-20240824-114753-1724489273.10111 + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989539084114-10-20240824-114753-1724489273.10111.wav + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989539084114 +Priority: 7 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273. +Variable: MOHCLASS +Value: default +Extension: 989539084114 +Application: Set +AppData: MOHCLASS=default + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989539084114 +Priority: 11 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_EXTEN +Value: 989539084114 +Extension: 989539084114 +Application: Macro +AppData: dialout-trunk,6,+79539084114,,off + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79539084114 + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79539084114 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79539084114) + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79539084114 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79539084114 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Extension: s +Application: Dial +AppData: PJSIP/+79539084114@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79539084114^989539084114^6^1724489273^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79539084114 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: PROGRESSTIME +Value: + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +Variable: __REC_STATUS +Value: RECORDING + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +Variable: __DAY +Value: 24 + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989539084114 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +11:47:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989539084114 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +11:47:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989539084114 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489273.1 +Linkedid: 1724489273.10111 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +11:47:54 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989539084114 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011ca +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989539084114 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489273.10112 +DestLinkedid: 1724489273.10111 +DialString: +79539084114@rt_769402 + + +11:47:54 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989539084114 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Extension: 989539084114 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Variable: RINGTIME_MS +Value: 332 +DestChannel: PJSIP/rt_769402-000011ca +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989539084114 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989539084114 +DestPriority: 1 +DestUniqueid: 1724489273.10112 +DestLinkedid: 1724489273.10111 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:48:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989539084114 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989539084114 +Priority: 1 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +11:48:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989539084114 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +11:48:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989539084114 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +Variable: BRIDGEPEER +Value: PJSIP/10-000011c9 +DestChannel: PJSIP/rt_769402-000011ca +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989539084114 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489273.10112 +DestLinkedid: 1724489273.10111 +DialStatus: ANSWER +BridgeUniqueid: 8648a2dc-1c1a-43c1-8cc2-d0e7a0874175 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +11:48:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989539084114 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: BRIDGEPVTCALLID +Value: 24e49c9d-a7d2-40a5-a317-be62c7735ab6 + + +11:48:08 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989539084114 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6447a8b7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489288.059158 +SentRTP: 1724529280 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xa0f18e31 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 22698 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:48:13 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989539084114 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6447a8b7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489293.057838 +SentRTP: 1724569280 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xa0f18e31 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 22948 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:48:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 781627694 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:48:17 + +Event: Br +Privilege: call,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989539084114 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 8648a2dc-1c1a-43c1-8cc2-d0e7a0874175 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:48:17 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 8648a2dc-1c1a-43c1-8cc2-d0e7a0874175 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/10-000011c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989539084114 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: ARG2 +Value: + + +11:48:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 9895390 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:48:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989539084114 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489273.10112 +Linkedid: 1724489273.10111 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; +Extension: s +Application: GotoIf +AppData: 1?theend + + +11:48:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989539084114 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: Hangup +AppData: +Device: PJSIP/rt_769402 +State: NOT_INUSE +Variable: RTPAUDIOQOS +Value: ssrc=2039563677;themssrc=4109274766;lp=0;rxjitter=0.000000;rxcount=732;txjitter=0.001375;txcount=732;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +11:48:17 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10-000011c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989539084114 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724489273.10111 +Linkedid: 1724489273.10111 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000199; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Source: 78162769402 +Destination: 989539084114 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011ca +LastApplication: Dial +LastData: PJSIP/+79539084114@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 23 +BillableSeconds: 14 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489273.10111 +UserField: +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:48:17 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10137 + + +11:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(in,78162769402,dontcare) + + +11:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __MONTH +Value: 08 + + +11:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: __MON_FMT +Value: wav + + +11:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: FROMEXTEN +Value: 79020393742 + + +11:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 4 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: GOSUB_RETVAL +Value: +Extension: 78162769402 +Application: Set +AppData: __FROM_DID=78162769402 + + +11:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: s +Application: Return +AppData: +Variable: CALLED_BLACKLIST +Value: 1 + + +11:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 12 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 78162769402 +Application: GotoIf +AppData: 1?post-reverse-charge + + +11:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 20 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: 78162769402 +Application: Goto +AppData: timeconditions,2,1 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:48:22 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: 2 +Application: AGI +AppData: agi +CommandId: 1190019402 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +11:48:22 + +Event: AGIExecStart +Privilege: agi,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +CommandId: 2124531204 +Command: VERBOSE "Goto +ResultCode: 200 +Result: Success + + +11:48:22 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +CommandId: 1381419230 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +11:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +11:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724489302.10113 + + +11:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=rt_769402-000011cb + + +11:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=rt_769402-000011cb + + +11:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +11:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +11:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +11:48:22 + +Event: Va +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +11:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724489302.10113 +Linkedid: 1724 +Extension: s +Application: Set +AppData: CDR(cnam)=79020393742 +Variable: MACRO_DEPTH +Value: 1 + + +11:48:22 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: MACRO_PRIORITY +Value: +Extension: 194 +Application: Answer +AppData: +Device: PJSIP/rt_769402 +State: INUSE + + +11:48:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/rt_769402-000011cb) + + +11:48:23 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: MacroExit +AppData: + + +11:48:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +11:48:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: VQ_AINFO +Value: +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare + + +11:48:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: 194 +Application: Set +AppData: QRINGOPTS=R +Variable: QRINGOPTS +Value: R + + +11:48:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +11:48:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +11:48:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +11:48:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +11:48:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:48:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7902 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +11:48:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Extension: 194 +Application: QueueLog +AppData: 194,1724489302.10113,NONE,DID,78162769402 + + +11:48:32 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:48:32 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489302.10 +Linkedid: 1724489302.10113 +Variable: QUEUEJOINTIME +Value: 1724489312 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489312.10114 +Linkedid: 1724489302.10113 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489312.10114 +Linkedid: 1724489302.10113 +Variable: __MOHCLASS +Value: + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: +Priority: 1 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: __MONTH +Value: 08 + + +11:48:32 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ad4;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724489312.10114 +LocalOneLinkedid: 1724489302.10113 +LocalTwoChannel: Local/12@from-queue-00000ad4;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79020393742 +LocalTwoCallerIDName: 79020393742 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724489312.10115 +LocalTwoLinkedid: 1724489302.10113 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ad4;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489312.10114 +DestLinkedid: 1724489302.10113 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489312.10116 +Linkedid: 1724489302.10113 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +Variable: __QC_CONFIRM +Value: 0 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489312.101 +Linkedid: 1724489302.10113 +Variable: __TTL +Value: 64 +Extension: 12 +Application: GotoIf +AppData: 0?hangup + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: __TIMESTR +Value: 20240824-114822 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: __CW +Value: TRUE + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: __CALLEE_ACCOU +Value: 64 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +11:48:32 + +Event: VarSet +Privilege: dialpl +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: __YEAR +Value: 2024 + + +11:48:32 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000ad5;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724489312.10116 +LocalOneLinkedid: 1724489302.10113 +LocalTwoChannel: Local/13@from-queue-00000ad5;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79020393742 +LocalTwoCallerIDName: 79020393742 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724489312.10117 +LocalTwoLinkedid: 1724489302.10113 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +DestChannel: Local/13@from-queue-00000ad5;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724489312.10116 +DestLinkedid: 1724489302.10113 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: MACRO_PRIORITY +Value: + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489312.10118 +Linkedid: 1724489302.10113 +Variable: __SIGNORE +Value: TRUE +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: __FROMQUEUEEXTEN +Value: 79020393742 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7902039 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489312.10118 +Linkedid: 1724489302.10113 +Variable: __FROM_DID +Value: 78162769402 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489312.10118 +Linkedid: 1724489302.10113 +Variable: __DIRECTION +Value: + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: __QCONTEXT +Value: 0 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: __YEAR +Value: 2024 + + +11:48:32 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000ad6;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724489312.10118 +LocalOneLinkedid: 1724489302.10113 +LocalTwoChannel: Local/10@from-queue-00000ad6;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79020393742 + + +11:48:32 + +Event: Newexten +Privilege: +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: CALLERID(number)=79020393742 +Variable: MACRO_DEPTH +Value: 2 +DestChannel: Local/10@from-queue-00000ad6;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724489312.10118 +DestLinkedid: 1724489302.10113 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-calleri +Exten: s +Priority: 9 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 2 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: __FROMQ +Value: true +Extension: 10 +Application: Set +AppData: __FROMQ=true + + +11:48:32 + +Event: Newexten +Privilege: dialpla +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: CDR(cnam)=79020393742 +Variable: DB_RESULT +Value: EXTENSION + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ad6;2 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 7 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: HOTDESKEXTEN +Value: 10@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 17244893 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 781 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: ARG1 +Value: novm + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724489312.10115 +Linkedid: 1724489 +Variable: NOW +Value: 1724489312 +Extension: s +Application: Set +AppData: NOW=1724489312 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724489312.101 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724489312.101 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 781 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) +Variable: LOCAL(ARG1) +Value: yes + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 7 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: RECFROMEXTEN +Value: 79020393742 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79020393742) + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79020393742-20240824-114832-1724489312.10115.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-12-79020393742-20240824-114832-1724489312.10115.wav + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub- +Exten: recordcheck +Priority: 23 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: DB_RESULT +Value: EXTENSION + + +11:48:32 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: MACRO_CONTEXT +Value: ext-local + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: CHANCONTEXT +Value: from-queue-00000ad5;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ad5;2 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: mac +Exten: s +Priority: 5 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: CHANEXTEN=13 +Variable: CHANEXTEN +Value: 13 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: G +AppData: 0?Set(CALLERID(name)=) + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: CALLERID(name)=79020393742 +Variable: MACRO_DEPTH +Value: 2 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 +Variable: MACRO +Value: 1 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 12 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: DB_RESULT +Value: PJSIP/12 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: 0?skipset + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: ctset +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: ALERT_INFO +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: GotoIf +AppData: 1?godial + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 172448931 +Linkedid: 1724489302.10113 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: DIALEDPEERNAME +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79020393742 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: R + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79020393742 and 10 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: exten +Priority: 4 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=e + + +11:48:32 + +Event: N +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +11:48:32 + +Event: Newchannel +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011cc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489312.10120 +Linkedid: 1724489302.10113 +Variable: __MON_FMT +Value: wav + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011cc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489312.10120 +Linkedid: 1724489302.10113 +Variable: __RINGTIMER +Value: 60 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011cc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: fro +Exten: s +Priority: 1 +Uniqueid: 1724489312.10120 +Linkedid: 1724489302.10113 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011cc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724489312.10120 +Linkedid: 1724489302.10113 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/12-000011cc + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011cc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79020393 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724489312.10120 +Linkedid: 1724489302.10113 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +11:48:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7902039 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +11:48:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DS +Value: 2 + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.1 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: DIALEDTIME +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +11:48:33 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/rt +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: PROGRESSTIME_MS +Value: +DestChannel: Local/12@from-queue-00000ad4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79020393742 +DestConnectedLineName: 79020393742 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489312.10114 +DestLinkedid: 1724489302.10113 +DialString: 12/sip +DialStatus: RINGING + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPT +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724489312. +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79020393742 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79020393742 and 13 + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Device: Local/12@from-queue +State: INUSE +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 7816276940 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.1011 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79020393742) + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cd +ChannelState: +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79020393742-20240824-114832-1724489312.10117.wav +Variable: DIALEDPEERNUMBER +Value: 10/sip + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Variable: __TIMESTR +Value: 20240824-114832 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from +Exten: s +Priority: 1 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Variable: __QC_CONFIRM +Value: 0 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1 +Linkedid: 1724489302.10113 +Variable: __MOHCLASS +Value: + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: func- +Exten: s +Priority: 3 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: recordcheck +Application: Return +AppData: +Variable: ARGC +Value: + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: ARG3 +Value: 13 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: N +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: DB_RESULT +Value: 13 +Extension: dstring +Application: Set +AppData: DSTRING= + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: dstring +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79020393742 +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724489312.10117 +Linkedid: 17244893 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 40 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 7 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:48:33 + +Event: VarSet +Privilege: +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10117 +Linkedid: +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) +Variable: MACRO_DEPTH +Value: 2 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: RINGTIME_MS +Value: + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ce +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489312.10122 +Linkedid: 1724489302.10113 +Variable: __CALLFILENAME +Value: external-13-79020393742-20240824-114832-1724489312.10117 + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ce +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489312.10122 +Linkedid: 1724489302.10113 +Variable: __CALLEE_ACCOUNCODE +Value: + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ce +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистр +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489312.10122 +Linkedid: 1724489302.10113 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ce +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724489312.10122 +Linkedid: 1724489302.10113 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +11:48:33 + +Event: DialBegin +Privilege: call,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724489312.10122 +Linkedid: 1724489302.10113 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +11:48:33 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x44543c30 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489313.289264 +SentRTP: 79687 +SentPackets: 499 +SentOctets: 79687 +Report0SourceSSRC: 0xe4fa6fad +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 52471 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME +Value: 2 + + +11:48:34 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +DestChannel: Local/12@from-queue-00000ad4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79020393742 +DestConnectedLineName: 79020393742 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489312.10114 +DestLinkedid: 1724489302.10113 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/12 +State: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:48:35 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/13-000011ce +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724489312.10122 +Linkedid: 1724489302.10113 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING + + +11:48:35 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: RINGTIME_MS +Value: 3332 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: Local/13@from-queue-00000ad5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79020393742 +DestConnectedLineName: 79020393742 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489312.10116 +DestLinkedid: 1724489302.10113 +DialStatus: RINGING + + +11:48:36 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 4073 +DestChannel: PJSIP/10-000011cd +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79020393742 +DestConnectedLineName: 79020393742 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724489312.10121 +DestLinkedid: 1724489302.10113 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing + + +11:48:36 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:48:37 + +Event: Extension +Privilege: dialplan,all +Channel: PJSIP/10-000011cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +11:48:37 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/10 +State: INUSE +Channel: PJSIP/10-000011cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79020393742 +ConnectedLineName: 790203 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: CFIGNORE= +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 303 +LastCall: 1724488662 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: CFIGNORE +Value: + + +11:48:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +11:48:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/rt_769402-000011cb)= + + +11:48:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +11:48:37 + +Event: Newsta +Privilege: call,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 55 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-000011cd +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79020393742 +DestConnectedLineName: 79020393742 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724489312.10121 +DestLinkedid: 1724489302.10113 +DialStatus: ANSWER +BridgeUniqueid: 2f1663ef-3f7c-43a7-b736-27827f896f6f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +11:48:37 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/12@from-queue-00000ad4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79020393742 +DestConnectedLineName: 79020393742 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489312.10116 +DestLinkedid: 1724489302.10113 +DialStatus: CANCEL + + +11:48:37 + +Event: QueueCalle +Privilege: call,all +Channel: Local/13@from-queue-00000ad5;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489312.10116 +Linkedid: 1724489302.10113 +Cause: 26 +Source: 79020393742 +Destination: 13 +DestinationContext: ext-local +CallerID: "79020393742" <79020393742> +DestinationChannel: PJSIP/13-000011ce +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724489312.10117 +UserField: +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000ad5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79020393742 +DestConnectedLineName: 79020393742 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489312.10116 +DestLinkedid: 1724489302.10113 +DialStatus: CANCEL +Device: Queue +State: NOT_INUSE + + +11:48:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: ARG1 +Value: novm +DestChannel: PJSIP/13-000011ce +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79020393742 +DestConnectedLineName: 79020393742 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724489312.10122 +DestLinkedid: 1724489302.10113 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +RingTime: 5 +BridgeUniqueid: 480a881e-f7dc-43f6-847a-b06b18b6b076 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL + + +11:48:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: ARG4 +Value: + + +11:48:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:48:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere +DestChannel: PJSIP/12-000011cc +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79020393742 +DestConnectedLineName: 79020393742 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724489312.10120 +DestLinkedid: 1724489302.10113 +DialStatus: CANCEL +BridgeUniqueid: 480a881e-f7dc-43f6-847a-b06b18b6b076 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:48:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10115 +Linkedid: 1 +Variable: ARG1 +Value: + + +11:48:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_IN_HANGUP +Value: +Device: Local/13@from-queue +State: NOT_INUSE +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:48:37 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/12-000011cc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: GotoIf +AppData: 1?theend + + +11:48:37 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/13@from-queue-00000ad5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489312.10117 +Linkedid: 1724489302.10113 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Device: PJSIP/12 +State: NOT_INUSE +Cause: 26 +Cause-txt: Answered elsewhere +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: + + +11:48:37 + +Event: Newexten +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: 480a881e-f7dc-43f6-847a-b06b18b6b076 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000ad4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-han +Exten: s +Priority: 3 +Uniqueid: 1724489312.10115 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Source: 79020393742 +Destination: 12 +DestinationContext: ext-local +CallerID: "79020393742" <79020393742> +DestinationChannel: PJSIP/12-000011cc +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724489312.10115 +UserField: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +11:48:37 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10140 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 2f1663ef-3f7c-43a7-b736-27827f896f6f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +11:48:37 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: BRIDGEPVTCALLID +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10143 + + +11:49:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:49:04 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79020393742 +ConnectedLineName: 79020393742 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489312.10121 +Linkedid: 1724489302.10113 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 2f1663ef-3f7c-43a7-b736-27827f896f6f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:49:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: ARG3 +Value: 0 + + +11:49:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: ARG1 +Value: + + +11:49:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +11:49:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad6;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Cause: 16 +Cause-txt: Normal Clearing +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +11:49:05 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: Local/10@from-queue-00000ad6;2 +ActionID: 10144 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: 2f1663ef-3f7c-43a7-b736-27827f896f6f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: MACRO_EXTEN + + +11:49:05 + +Event: Newexten +Privilege: dialpl +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: BRIDGEPEER +Value: +Cause: 16 +BridgeUniqueid: 480a881e-f7dc-43f6-847a-b06b18b6b076 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing + + +11:49:05 + +Event: BridgeDestroy +Privilege: call,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 4 + + +11:49:05 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/rt_769402-000011cb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489302.10113 +Linkedid: 1724489302.10113 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +TalkTime: 27 +Reason: agent +Device: Local/10@from-queue +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Source: 79020393742 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79020393742" <79020393742> +DestinationChannel: Local/12@from-queue-00000ad4;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 15 + + +11:49:05 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QU +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79020393742 +CallerIDName: 79020393742 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489312.10119 +Linkedid: 1724489302.10113 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory + + +11:49:05 + +Event: Cdr +Privilege: cdr,all +AccountCode: +Source: 79020393742 +Destination: 10 +DestinationContext: ext-local +CallerID: "79020393742" <79020393742> +Channel: Local/10@from-queue-00000ad6;2 +DestinationChannel: PJSIP/10-000011cd +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 32 +BillableSeconds: 27 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489312.10119 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10147 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116381957 +Priority: 1 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489363.1 +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011cf + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:49:23 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489363.10123 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116381957 +Priority: 2 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116381957 +Application: Gosub +AppData: sub-record-check,s,1(out,989116381957,dontcare) + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489363.10123 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489363.10123 +Linkedid: 172448 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: __CALLFILENAME +Value: out-989116381957-10-20240824-114923-1724489363.10123 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116381957-10-20240824-114923-1724489363.10123 + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989116381957-10-20240824-114923-1724489363.10123.wav + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116381957 +Priority: 7 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363. +Variable: MOHCLASS +Value: default +Extension: 989116381957 +Application: Set +AppData: MOHCLASS=default + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116381957 +Priority: 11 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_EXTEN +Value: 989116381957 +Extension: 989116381957 +Application: Macro +AppData: dialout-trunk,6,+79116381957,,off + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79116381957 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79116381957 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116381957) + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Extension: s +Application: Dial +AppData: PJSIP/+79116381957@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116381957^989116381957^6^1724489363^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: PROGRESSTIME +Value: + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +Variable: __REC_STATUS +Value: RECORDING + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +Variable: __DAY +Value: 24 + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +11:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +11:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489363.1 +Linkedid: 1724489363.10123 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +11:49:23 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011d0 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116381957 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489363.10124 +DestLinkedid: 1724489363.10123 +DialString: +79116381957@rt_769402 + + +11:49:23 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Extension: 989116381957 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Variable: RINGTIME_MS +Value: 398 +DestChannel: PJSIP/rt_769402-000011d0 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116381957 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116381957 +DestPriority: 1 +DestUniqueid: 1724489363.10124 +DestLinkedid: 1724489363.10123 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:49:25 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: PROGRESSTIME_MS +Value: 2077 +DestChannel: PJSIP/rt_769402-000011d0 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116381957 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116381957 +DestPriority: 1 +DestUniqueid: 1724489363.10124 +DestLinkedid: 1724489363.10123 +DialStatus: PROGRESS + + +11:49:30 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116381957 +Priority: 1 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5cb1428d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489370.468323 +SentRTP: 1724529200 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x06ac6310 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 9988 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:49:35 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116381957 +Priority: 1 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5cb1428d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489375.467928 +SentRTP: 1724569200 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0x06ac6310 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 10238 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:49:40 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116381957 +Priority: 1 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5cb1428d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489380.468456 +SentRTP: 1724609200 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x06ac6310 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 10488 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:49:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: DIALEDPEERNUMBER +Value: +79116381957@rt_769402 + + +11:49:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 2 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +Variable: LOCAL(ARGC) +Value: 6 +Extension: s +Application: NoOp +AppData: email notifications disabled..exiting. + + +11:49:46 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/10-000011cf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: GOSUB_RETVAL +Value: +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-000011d0 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116381957 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489363.10124 +DestLinkedid: 1724489363.10123 +DialStatus: ANSWER + + +11:49:46 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: acde99e7-f5ef-4ecf-9339-3a59526a81e9 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/10-000011cf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 3f34223b-b4ff-435f-b1cf-bd2ca79903ce + + +11:49:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001500;avgrxjitter=000.001067;stdevrxjitter=000.000168;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +11:49:49 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/10-000011cf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000168; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +11:49:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: DIALEDTIME_MS +Value: 26543 +BridgeUniqueid: acde99e7-f5ef-4ecf-9339-3a59526a81e9 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:49:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:49:49 + +Event: BridgeDestroy +Privilege: call,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: acde99e7-f5ef-4ecf-9339-3a595 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:49:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489363.10124 +Linkedid: 1724489363.10123 +Variable: RTPAUDIOQOSLOSS +Value: minrxlos +Extension: s +Application: Hangup +AppData: + + +11:49:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011cf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Cause: 16 +Cause-txt: Normal Clearing + + +11:49:49 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724489363.10123 +Linkedid: 1724489363.10123 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Source: 78162769402 +Destination: 989116381957 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011d0 +LastApplication: Dial +LastData: PJSIP/+79116381957@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 26 +BillableSeconds: 3 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489363.10123 +UserField: +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10149 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217366381 +Priority: 1 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489400.1 +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011d1 + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:50:00 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489400.10125 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217366381 +Priority: 2 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989217366381 +Application: Gosub +AppData: sub-record-check,s,1(out,989217366381,dontcare) + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489400.10125 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489400.10125 +Linkedid: 172448 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: __CALLFILENAME +Value: out-989217366381-10-20240824-115000-1724489400.10125 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989217366381-10-20240824-115000-1724489400.10125 + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989217366381-10-20240824-115000-1724489400.10125.wav + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217366381 +Priority: 7 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400. +Variable: MOHCLASS +Value: default +Extension: 989217366381 +Application: Set +AppData: MOHCLASS=default + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217366381 +Priority: 11 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_EXTEN +Value: 989217366381 +Extension: 989217366381 +Application: Macro +AppData: dialout-trunk,6,+79217366381,,off + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79217366381 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79217366381 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79217366381) + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Extension: s +Application: Dial +AppData: PJSIP/+79217366381@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79217366381^989217366381^6^1724489400^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: PROGRESSTIME +Value: + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +Variable: __REC_STATUS +Value: RECORDING + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +Variable: __DAY +Value: 24 + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +11:50:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +11:50:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489400.1 +Linkedid: 1724489400.10125 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +11:50:00 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011d2 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989217366381 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489400.10126 +DestLinkedid: 1724489400.10125 +DialString: +79217366381@rt_769402 + + +11:50:00 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Extension: 989217366381 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 370 +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +DestChannel: PJSIP/rt_769402-000011d2 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989217366381 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989217366381 +DestPriority: 1 +DestUniqueid: 1724489400.10126 +DestLinkedid: 1724489400.10125 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:50:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: PROGRESSTIME_MS +Value: 6525 + + +11:50:11 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217366381 +Priority: 1 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x2ef34e9a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489411.824141 +SentRTP: 1724529240 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x1e0bd063 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 26997 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:50:16 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217366381 +Priority: 1 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x2ef34e9a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489416.825562 +SentRTP: 1724569240 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0x1e0bd063 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27247 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:50:21 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217366381 +Priority: 1 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x2ef34e9a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489421.824060 +SentRTP: 1724609240 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x1e0bd063 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27497 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:50:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217366381 +Priority: 1 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +Variable: LOCAL(AR +Value: + + +11:50:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: +Device: PJSIP/rt_769402 +State: INUSE + + +11:50:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +Variable: BRIDGEPEER +Value: PJSIP/10-000011d1 +DestChannel: PJSIP/rt_769402-000011d2 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989217366381 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489400.10126 +DestLinkedid: 1724489400.10125 +DialStatus: ANSWER +BridgeUniqueid: 488efae8-1233-425a-a9c6-f112cf126797 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +11:50:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: BRIDGEPVTCALLID +Value: ef5f2a73-89d5-43dd-bcc8-5bf7f7498f41 + + +11:50:31 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x2ef34e9a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489431.824208 +SentRTP: 1724689240 +SentPackets: 1250 +SentOctets: 200000 +Report0SourceSSRC: 0x1e0bd063 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27997 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:50:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:50:36 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011d1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 488efae8-1233-425a-a9c6-f112cf126797 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:50:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_EXTEN +Value: + + +11:50:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:50:36 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-000011d2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217366381 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489400.10126 +Linkedid: 1724489400.10125 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +BridgeUniqueid: 488efae8-1233-425a-a9c6-f112cf126797 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +11:50:36 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/10-000011d1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10150 +Variable: MACRO_PRIORITY +Extension: s +Application: Hangup +AppData: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Device: PJSIP/rt_769402 +State: NOT_INUSE +Source: 78162769402 +Destination: 989217366381 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011d2 +LastApplication: Dial +LastData: PJSIP/+79217366381@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob + + +11:50:36 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011d1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217366381 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489400.10125 +Linkedid: 1724489400.10125 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000158; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:50:36 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10151 + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489446.1 +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011d3 + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:50:46 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489446.10127 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116300338 +Priority: 2 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116300338 +Application: Gosub +AppData: sub-record-check,s,1(out,989116300338,dontcare) + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489446.10127 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489446.10127 +Linkedid: 172448 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: __CALLFILENAME +Value: out-989116300338-10-20240824-115046-1724489446.10127 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116300338-10-20240824-115046-1724489446.10127 + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989116300338-10-20240824-115046-1724489446.10127.wav + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116300338 +Priority: 7 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446. +Variable: MOHCLASS +Value: default +Extension: 989116300338 +Application: Set +AppData: MOHCLASS=default + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116300338 +Priority: 11 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_EXTEN +Value: 989116300338 +Extension: 989116300338 +Application: Macro +AppData: dialout-trunk,6,+79116300338,,off + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79116300338 + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79116300338 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116300338) + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Extension: s +Application: Dial +AppData: PJSIP/+79116300338@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116300338^989116300338^6^1724489446^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: PROGRESSTIME +Value: + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +Variable: __REC_STATUS +Value: RECORDING + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +Variable: __DAY +Value: 24 + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +11:50:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +11:50:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489446.1 +Linkedid: 1724489446.10127 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +11:50:46 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011d4 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116300338 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489446.10128 +DestLinkedid: 1724489446.10127 +DialString: +79116300338@rt_769402 + + +11:50:46 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +Extension: 989116300338 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/rt_769402 +State: RINGING +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse + + +11:50:46 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: RINGTIME_MS +Value: 372 +DestChannel: PJSIP/rt_769402-000011d4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116300338 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116300338 +DestPriority: 1 +DestUniqueid: 1724489446.10128 +DestLinkedid: 1724489446.10127 +DialStatus: RINGING +Device: PJSIP/10 +State: INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:50:50 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: PROGRESSTIME_MS +Value: 4605 +DestChannel: PJSIP/rt_769402-000011d4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116300338 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116300338 +DestPriority: 1 +DestUniqueid: 1724489446.10128 +DestLinkedid: 1724489446.10127 +DialStatus: PROGRESS + + +11:50:55 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1e71d892 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489455.898489 +SentRTP: 1724529448 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x0f97216f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 44774 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:51:00 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1e71d892 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489460.899333 +SentRTP: 1724569448 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x0f97216f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 45024 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:51:05 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1e71d892 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489465.897572 +SentRTP: 1724609448 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x0f97216f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 45274 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:51:10 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1e71d892 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489470.897761 +SentRTP: 1724649448 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0x0f97216f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 45524 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:51:15 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1e71d892 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489475.898541 +SentRTP: 1724689448 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0x0f97216f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 45774 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:51:20 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1e71d892 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489480.898328 +SentRTP: 1724729448 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0x0f97216f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 46024 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:51:25 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1e71d892 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489485.899688 +SentRTP: 1724769448 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0x0f97216f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 46274 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:51:30 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1e71d892 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489490.898377 +SentRTP: 1724809448 +SentPackets: 2001 +SentOctets: 320160 +Report0SourceSSRC: 0x0f97216f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 46524 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:51:35 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1e71d892 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489495.897957 +SentRTP: 1724849448 +SentPackets: 2251 +SentOctets: 360160 +Report0SourceSSRC: 0x0f97216f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 46773 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000141; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 127 +DestChannel: PJSIP/rt_769402-000011d4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116300338 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116300338 +DestPriority: 1 +DestUniqueid: 1724489446.10128 +DestLinkedid: 1724489446.10127 +DialStatus: CANCEL + + +11:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724489446.10128 +Linkedid: 1724489446.10127 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.005000;avgrxjitter=000.000813;stdevrxjitter=000.000334;mintxjitte +Extension: s +Application: GotoIf +AppData: 1?theend + + +11:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: MACRO_DEPTH +Value: 0 +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/rt_769402 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: + + +11:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Source: 78162769402 +Destination: 989116300338 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011d4 +LastApplication: Dial +LastData: PJSIP/+79116300338@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 51 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724489446.10127 +UserField: + + +11:51:37 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724489446.10127 +Linkedid: 1724489446.10127 +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10153 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489510.1 +Linkedid: 1724489510.10129 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011d5 + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724489510.10129 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:51:50 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489510.10129 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217317441 +Priority: 2 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989217317441 +Application: Gosub +AppData: sub-record-check,s,1(out,989217317441,dontcare) + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489510.10129 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489510.10129 +Linkedid: 172448 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: __CALLFILENAME +Value: out-989217317441-10-20240824-115150-1724489510.10129 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989217317441-10-20240824-115150-1724489510.10129 + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989217317441-10-20240824-115150-1724489510.10129.wav + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217317441 +Priority: 7 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510. +Variable: MOHCLASS +Value: default +Extension: 989217317441 +Application: Set +AppData: MOHCLASS=default + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217317441 +Priority: 11 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_EXTEN +Value: 989217317441 +Extension: 989217317441 +Application: Macro +AppData: dialout-trunk,6,+79217317441,,off + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79217317441 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79217317441 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79217317441) + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Extension: s +Application: Dial +AppData: PJSIP/+79217317441@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79217317441^989217317441^6^1724489510^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: PROGRESSTIME +Value: + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +Variable: __REC_STATUS +Value: RECORDING + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +Variable: __DAY +Value: 24 + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +11:51:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +11:51:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489510.1 +Linkedid: 1724489510.10129 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +11:51:50 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011d6 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989217317441 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489510.10130 +DestLinkedid: 1724489510.10129 +DialString: +79217317441@rt_769402 + + +11:51:50 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Extension: 989217317441 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Variable: RINGTIME_MS +Value: 337 +DestChannel: PJSIP/rt_769402-000011d6 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989217317441 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989217317441 +DestPriority: 1 +DestUniqueid: 1724489510.10130 +DestLinkedid: 1724489510.10129 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:51:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: PROGRESSTIME_MS +Value: 808 + + +11:51:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:51:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:51:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-115151 +Variable: __YEAR +Value: 2024 + + +11:51:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:51:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +11:51:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724489511.10131 +Linkedid: 17244895 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:51:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: 78162769402 +Application: Set +AppData: __FROM_DID=78162769402 +Variable: __FROM_DID +Value: 78162769402 + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 3 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +11:51:52 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 2 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:51:52 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T11 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 00A82B11-5B5B-EF11-AE2D-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: +UsingPassword: 1 + + +11:51:52 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +CommandId: 1467117213 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +11:51:52 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +CommandId: 1319706032 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +11:51:52 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +CommandId: 1970644131 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +CommandId: 1022823335 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +11:51:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 19 +Priority: 1 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-u +Exten: s +Priority: 3 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +11:51:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 7921 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: AMPUSER +Value: 79217366381 +Extension: s +Application: Set +AppData: AMPUSER=79217366381 + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +11:51:52 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Goto +AppData: 0?Set(__CIDMASQUERADING=TRUE) + + +11:51:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 50 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: s +Application: Set +AppData: CALLERID(name)=79217366381 +Variable: MACRO_DEPTH +Value: 1 + + +11:51:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:51:52 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: 194 +Application: Answer +AppData: +Device: PJSIP/rt_769402 +State: RINGINUSE + + +11:51:52 + +Event: Var +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/rt_769402-000011d7) + + +11:51:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: MacroExit +AppData: + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +11:51:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: VQ_AINFO +Value: +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: 194 +Application: Set +AppData: QRINGOPTS=R +Variable: QRINGOPTS +Value: R + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-re +Exten: s +Priority: 1 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +11:51:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +11:51:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:51:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +11:51:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-115157 +Variable: __YEAR +Value: 2024 + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724489517.10132 +Linkedid: 17244895 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: 78162769402 +Application: Set +AppData: __FROM_DID=78162769402 +Variable: __FROM_DID +Value: 78162769402 + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 3 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +11:51:57 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 2 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:51:57 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +CommandId: 523328495 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +11:51:57 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +CommandId: 889859844 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +CommandId: 508367673 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 19 +Priority: 1 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-u +Exten: s +Priority: 3 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 7911 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: AMPUSER +Value: 79116300338 +Extension: s +Application: Set +AppData: AMPUSER=79116300338 + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +11:51:57 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Goto +AppData: 0?Set(__CIDMASQUERADING=TRUE) + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 50 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: s +Application: Set +AppData: CALLERID(name)=79116300338 +Variable: MACRO_DEPTH +Value: 1 + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:51:57 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: 194 +Application: Answer +AppData: + + +11:51:57 + +Event: Var +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/rt_769402-000011d8) + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: MacroExit +AppData: + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +11:51:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: VQ_AINFO +Value: +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: 194 +Application: Set +AppData: QRINGOPTS=R +Variable: QRINGOPTS +Value: R + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +11:51:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +11:51:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-re +Exten: s +Priority: 1 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +11:51:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +11:51:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:51:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +11:51:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +11:52:01 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7dade3b2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489521.618622 +SentRTP: 1724569504 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x8256b563 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 50833 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:52:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724489521 +Variable: QUEUEJOINTIME +Value: + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489521.10133 +Linkedid: 1724489511.10131 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489521.10133 +Linkedid: 1724489511.10131 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;1 +ChannelState: 0 +ChannelStateDesc: Dow +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489521.10133 +Linkedid: 1724489511.10131 +Variable: __DIRECTION +Value: + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: __BLKVM_CHANNEL +Value: PJSIP/rt_769402-000011d7 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: __TIMESTR +Value: 20240824-115151 + + +11:52:01 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ad7;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724489521.10133 +LocalOneLinkedid: 1724489511.10131 +LocalTwoChannel: Local/12@from-queue-00000ad7;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79217366381 +LocalTwoCallerIDName: 79217366381 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724489521.10134 +LocalTwoLinkedid: 1724489511.10131 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ad7;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: 79217366381 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: +Priority: 1 +Uniqueid: 1724489521.10135 +Linkedid: 1724489511.10131 +DestChannel: Local/12@from-queue-00000ad7;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724489521.10133 +DestLinkedid: 1724489511.10131 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489521.10135 +Linkedid: 1724489511.10131 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489521.10135 +Linkedid: 1724489511.10131 +Variable: DIALEDPEERNUMBER +Value: + + +11:52:01 + +Event: VarSet +Privilege: dialpl +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: __FROMQUEUEEXTEN +Value: 79217366381 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: __YEAR +Value: 2024 + + +11:52:01 + +Event: +Privilege: agent,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000ad8;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724489521.10135 +LocalOneLinkedid: 1724489511.10131 +LocalTwoChannel: Local/13@from-queue-00000ad8;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79217366381 +LocalTwoCallerIDName: 79217366381 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724489521.10136 +LocalTwoLinkedid: 1724489511.10131 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000ad8;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489521.10135 +DestLinkedid: 1724489511.10131 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: DB_RESULT +Value: + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_EXTEN +Value: 12 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_EXTEN +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ad7;2 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 7921736 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: CHANEXTEN +Value: 12 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +11:52:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@f +Variable: MACRO_DEPTH +Value: 2 + + +11:52:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +11:52:01 + +Event: New +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: s +Application: Set +AppData: CALLERID(name)=79217366381 +Variable: MACRO_DEPTH +Value: 2 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489521.10133 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724489521 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +11:52:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +11:52:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 172448 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +11:52:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external + + +11:52:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +11:52:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(REC + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MIXMONITOR_FILENA +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79217366381-20240824-115201-1724489521.10134.wav,abi(), + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 7 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: DEXTEN +Value: 12 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +11:52:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:52:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 792173663 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: +Linkedid: 1724489511.10131 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: +Linkedid: 1724489511.10131 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 1?godial + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: D +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Variable: DIALEDPEERNUMBER +Value: 12/sip + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Variable: __TIMESTR +Value: 20240824-115201 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Variable: __QC_CONFIRM +Value: 0 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-intern +Exten: s +Priority: 1 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Variable: __MOHCLASS +Value: + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217366381 +ConnectedLineName: 79217366381 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +11:52:02 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489521.10133 +Linkedid: 1724489511.10131 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/12-000011d9 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489521.10137 +DestLinkedid: 1724489511.10131 +DialString: 12/sip + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 4 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +DestChannel: Local/12@from-queue-00000ad7;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489521.10133 +DestLinkedid: 1724489511.10131 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE +Extension: 13 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: __RINGTIMER +Value: 60 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: e +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724489521.10136 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: HOTDESCKCHAN +Value: 13@from-queue-00000ad8;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000ad8;2 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 2 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: s +Application: ExecIf +AppData: 1 +Variable: MACRO_DEPTH +Value: 2 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-ca +Exten: s +Priority: 49 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79217366381 + + +11:52:02 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000ad8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 79217366381 +ConnectedLineName: 79217366381 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489521.10135 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: Set +AppData: __MONTH=08 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-re +Exten: s +Priority: 9 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-reco +Exten: exten +Priority: 6 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record- +Exten: recordcheck +Priority: 16 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79217366381-20240824-115201-1724489521.10136 +Variable: MACRO_DEPTH +Value: 1 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000ad8;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000ad8;2 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG2 +Value: + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792173663 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +11:52:02 + +Event: Newexten +Privilege: dia +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: dstring +Application: Set +AppData: DEVICES=13 +Variable: DEVICES +Value: 13 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?dose + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792173663 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: Blind Transfer + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 7816276 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +11:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +11:52:02 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/13-000011da +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: PROGRESSTIME_MS +Value: + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011da +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489521.10138 +Linkedid: 1724489511.10131 +Variable: __MON_FMT +Value: wav + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011da +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489521.10138 +Linkedid: 1724489511.10131 +Variable: __FROMQ +Value: true + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011da +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489521.10138 +Linkedid: 1724489511.10131 +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79217366381 +ConnectedLineName: 79217366381 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489521.10138 +Linkedid: 1724489511.10131 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +11:52:02 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-000011da +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489521.10138 +DestLinkedid: 1724489511.10131 +DialString: 13/sip + + +11:52:02 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/13@from-queue-00000ad8;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489521.10135 +DestLinkedid: 1724489511.10131 +DialStatus: RINGING + + +11:52:04 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 55 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 2613 +Device: PJSIP/12 +State: RINGING +DestChannel: PJSIP/12-000011d9 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724489521.10137 +DestLinkedid: 1724489511.10131 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing + + +11:52:04 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:52:04 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3188 +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/13 +State: RINGING +DestChannel: Local/13@from-queue-00000ad8;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489521.10135 +DestLinkedid: +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:52:06 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7dade3b2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489526.621352 +SentRTP: 1724609504 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x8256b563 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 51083 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:52:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +11:52:06 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: QUEUEJOINTIME +Value: 1724489526 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Queue: 194 +Position: 2 +Count: 2 + + +11:52:06 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 + + +11:52:11 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7dade3b2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489531.617812 +SentRTP: 1724649344 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0x8256b563 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 51333 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:52:13 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000152; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 + + +11:52:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7911630 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: MACRO_CONTEXT +Value: ext-queues +Queue: 194 +Position: 2 +OriginalPosition: 2 +HoldTime: 7 +Count: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:52:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrx +Source: 79116300338 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116300338" <79116300338> +DestinationChannel: +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 16 +BillableSeconds: 16 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489517.10132 +UserField: + + +11:52:13 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/RT_769402 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116300338 +CallerIDName: 79116300338 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724489517.10132 +Linkedid: 1724489517.10132 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10154 + + +11:52:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217366381 +ConnectedLineName: 79217366381 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/12 +State: INUSE + + +11:52:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217366381 +ConnectedLineName: 792173 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Extension: s +Application: Set +AppData: CFIGNORE= +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 333 +LastCall: 1724479859 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: CFIGNORE +Value: + + +11:52:14 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217366381 +ConnectedLineName: 79217366381 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +11:52:14 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217366381 +ConnectedLineName: 79217366381 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/rt_769402-000011d7)= + + +11:52:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217366381 +ConnectedLineName: 79217366381 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=12/sip + + +11:52:14 + +Event: NewCallerid +Privilege: call,all +Channel: Local/12@from-queue-00000ad7;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217366381 +ConnectedLineName: 79217366381 +Language: ru +AccountCode: +Context: from-queu +Exten: 194 +Priority: 1 +Uniqueid: 1724489521.10133 +Linkedid: 1724489511.10131 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/12-000011d9 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724489521.10137 +DestLinkedid: 1724489511.10131 +DialStatus: ANSWER + + +11:52:14 + +Event: Hangup +Privilege: call,all +BridgeUniqueid: 0df6ddb1-0754-4fe6-a0ee-cad3f1164875 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000ad8;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +DestChannel: Local/13@from-queue-00000ad8;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489521.10135 +DestLinkedid: 1724489511.10131 +DialStatus: CANCEL +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Cause: 26 + + +11:52:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +BridgeUniqueid: 0df6ddb1-0754-4fe6-a0ee-cad3f1164875 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: PJSIP/13-000011da +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724489521.10138 +DestLinkedid: 1724489511.10131 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 13 +RingTime: 12 +DialStatus: CANCEL + + +11:52:14 + +Event: VarSet +Privilege: dialplan,all +Device: Local/13@from-queue +State: NOT_INUSE +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: ARG1 +Value: 0 + + +11:52:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere +Extension: h +Application: Macro +AppData: han + + +11:52:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 0df6ddb1-0754-4fe6-a0ee-cad3f1164875 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: s +Application: GotoIf +AppData: 1?theend + + +11:52:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ad8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489521.10136 +Linkedid: 1724489511.10131 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: + + +11:52:14 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 79217366381 +Destination: 13 +DestinationContext: ext-local +CallerID: "79217366381" <79217366381> +Channel: PJSIP/rt_769402-000011d7 +DestinationChannel: PJSIP/13-000011da +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 12 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724489521.10136 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: a1d83b51-26a2-403c-8b6c-6577ec1bb960 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: PJSIP/13 +State: NOT_INUSE +Variable: BRIDGEPEER +Value: + + +11:52:14 + +Event: UserEvent +Privilege: user,all +Device: Local/13@from-queue +State: NOT_INUSE +Exten: 13 +Context: ext-local +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/13@FROM-QUEUE +ActionID: 10157 + + +11:52:16 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7dade3b2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489536.618128 +SentRTP: 1724689504 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0x8256b563 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 51583 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:52:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +Variable: LOCAL(ARG4) +Value: 1724489510 + + +11:52:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +Variable: ARG4 +Value: +Extension: s +Application: Return +AppData: +Device: PJSIP/rt_769402 +State: INUSE + + +11:52:18 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/10-000011d5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-000011d6 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989217317441 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489510.10130 +DestLinkedid: 1724489510.10129 +DialStatus: ANSWER +BridgeUniqueid: effca493-14e1-495b-a0d9-085c51c2bec7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +11:52:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: BRIDGEPVTCALLID +Value: d1cf7c60-36bf-4ac1-ae0a-a2352aeaae46 + + +11:52:21 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489510.10130 +Linkedid: 1724489510.10129 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7dade3b2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489541.617364 +SentRTP: 1724729504 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0x8256b563 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 51833 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:52:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +11:52:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217317441 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: BRIDGEPVTCALLID +Value: + + +11:52:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: ARG1 +Value: +BridgeUniqueid: effca493-14e1-495b-a0d9-085c51c2bec7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:52:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 9892173 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_CONTEXT +Value: from-internal +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:52:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489510 +Linkedid: 1724489510.10129 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001250;avgrxjitter=000.000727;stdevrxjitter=000.000177;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: effca493-14e1-495b-a0d9-085c51c2bec7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:52:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011d5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: MACRO_EXTEN +Value: +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10158 + + +11:52:24 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/10-000011d5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489510.10129 +Linkedid: 1724489510.10129 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000349; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Source: 78162769402 +Destination: 989217317441 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011d6 +LastApplication: Dial +LastData: PJSIP/+79217317441@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 34 +BillableSeconds: 6 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489510.10129 +UserField: + + +11:52:24 + +Event: QueueMemberStatus +Privilege: agent,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10159 +Device: PJSIP/10 +State: NOT_INUSE +Exten: 10 +Context: ext-local +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:52:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011d9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217366381 +ConnectedLineName: 79217366381 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +11:52:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511. +Variable: BRIDGEPEER +Value: +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +11:52:40 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/12-000011d9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217366381 +ConnectedLineName: 79217366381 +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 1 +Uniqueid: 1724489521.10137 +Linkedid: 1724489511.10131 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000321; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +BridgeUniqueid: 0df6ddb1-0754-4fe6-a0ee-cad3f1164875 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:52:40 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/12 +State: NOT_INUSE +BridgeUniqueid: 0df6ddb1-0754-4fe6-a0ee-cad3f1164875 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: DIALSTATUS +Value: ANSWER +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 334 +LastCall: 1724489560 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:52:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: ARG2 +Value: + + +11:52:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:52:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10160 +Source: 79217366381 +Destination: 12 +DestinationContext: ext-local +CallerID: "79217366381" <79217366381> +DestinationChannel: PJSIP/12-000011d9 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 39 +BillableSeconds: 26 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489521.10134 +UserField: + + +11:52:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad7;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217366381 +ConnectedLineName: 792173663 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489521.10134 +Linkedid: 1724489511.10131 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Cause: 16 +DestChannel: Local/12@from-queue-00000ad7;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217366381 +DestConnectedLineName: 79217366381 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489521.10133 +DestLinkedid: 1724489511.10131 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 13 +TalkTime: 26 +Reason: agent +Cause-txt: Normal Clearing + + +11:52:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: BRIDGEPEER +Value: 1 +BridgeUniqueid: a1d83b51-26a2-403c-8b6c-6577ec1bb960 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10162 +Extension: h +Application: Macro + + +11:52:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(r + + +11:52:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.00 +Extension: s +Application: Hangup +AppData: + + +11:52:41 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/rt_769402-000011d7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217366381 +CallerIDName: 79217366381 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724489511.10131 +Linkedid: 1724489511.10131 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79217366381 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79217366381" <79217366381> +DestinationChannel: Local/13@from-queue-00000ad8;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 12 +BillableSeconds: 12 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724489511.10131 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10163 +Device: PJSIP/rt_769402 +State: NOT_INUSE + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989506879467 +Priority: 1 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489572.1 +Linkedid: 1724489572.10139 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011db + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724489572.10139 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:52:52 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489572.10139 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989506879467 +Priority: 2 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989506879467 +Application: Gosub +AppData: sub-record-check,s,1(out,989506879467,dontcare) + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489572.10139 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489572.10139 +Linkedid: 172448 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: __CALLFILENAME +Value: out-989506879467-10-20240824-115252-1724489572.10139 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989506879467-10-20240824-115252-1724489572.10139 + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989506879467-10-20240824-115252-1724489572.10139.wav + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989506879467 +Priority: 7 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572. +Variable: MOHCLASS +Value: default +Extension: 989506879467 +Application: Set +AppData: MOHCLASS=default + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989506879467 +Priority: 11 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_EXTEN +Value: 989506879467 +Extension: 989506879467 +Application: Macro +AppData: dialout-trunk,6,+79506879467,,off + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79506879467 + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79506879467 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79506879467) + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79506879467 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79506879467 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Extension: s +Application: Dial +AppData: PJSIP/+79506879467@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79506879467^989506879467^6^1724489572^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79506879467 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: PROGRESSTIME +Value: + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +Variable: __REC_STATUS +Value: RECORDING + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +Variable: __DAY +Value: 24 + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +11:52:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +11:52:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489572.1 +Linkedid: 1724489572.10139 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +11:52:52 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506879467 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011dc +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989506879467 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489572.10140 +DestLinkedid: 1724489572.10139 +DialString: +79506879467@rt_769402 + + +11:52:52 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011db +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506879467 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Extension: 989506879467 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/rt_769402 +State: RINGING +Variable: RINGTIME_MS +Value: 376 +DestChannel: PJSIP/rt_769402-000011dc +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989506879467 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989506879467 +DestPriority: 1 +DestUniqueid: 1724489572.10140 +DestLinkedid: 1724489572.10139 +DialStatus: RINGING + + +11:52:52 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:53:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989506879467 +Priority: 1 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +Variable: LOCAL(AR +Value: + + +11:53:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 172448957 +Linkedid: 1724489572.10139 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +11:53:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +Variable: BRIDGEPEER +Value: PJSIP/10-000011db +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-000011dc +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989506879467 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489572.10140 +DestLinkedid: 1724489572.10139 +DialStatus: ANSWER +BridgeUniqueid: ad809791-ed00-4ddf-85f1-0391fe8dcc2e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +11:53:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506879467 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: BRIDGEPVTCALLID +Value: b43a98f1-ba61-4486-8e2e-54b6703a0459 + + +11:53:12 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x196e5daa +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489592.947986 +SentRTP: 1724529424 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x7bfd8dcd +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 15023 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:53:17 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x196e5daa +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489597.948368 +SentRTP: 1724569584 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x7bfd8dcd +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 15273 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:53:22 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x196e5daa +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489602.948021 +SentRTP: 1724609424 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x7bfd8dcd +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 15523 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:53:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +11:53:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489572.10140 +Linkedid: 1724489572.10139 +Variable: BRIDGEPVTCALLID +Value: + + +11:53:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506879467 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: +Priority: 28 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: DIALSTATUS +Value: ANSWER +BridgeUniqueid: ad809791-ed00-4ddf-85f1-0391fe8dcc2e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:53:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506879467 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:53:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011dc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506879467 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489572. +Linkedid: 1724489572.10139 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001250;avgrxjitter=000.000768;stdevrxjitter=000.000178;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +BridgeUniqueid: ad809791-ed00-4ddf-85f1-0391fe8dcc2e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: GotoIf +AppData: 1?theend + + +11:53:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011db +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506879467 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: MACRO_EXTEN +Value: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: + + +11:53:26 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/10-000011db +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506879467 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489572.10139 +Linkedid: 1724489572.10139 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000199; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Source: 78162769402 +Destination: 989506879467 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011dc +LastApplication: Dial +LastData: PJSIP/+79506879467@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-sen + + +11:53:26 + +Event: UserEvent +Privilege: user,all +Exten: 10 +Context: ext-local +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10165 + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: 989062021999 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: TOUCH_MONITOR +Value: +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724489628.10141 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: +Value: 10-000011dd +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011dd + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10-000011dd +Variable: MACRO_DEPTH +Value: 1 + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724489628.10 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: AMPUSER +Value: 10 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: DB_RESULT +Value: 10 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 21 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DIAL_OPTIONS=HhTtr + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регист +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) +Variable: DB_RESULT +Value: ru + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: Set +AppData: CALLERID(name)=Регистратура_3 +Variable: MACRO_DEPTH +Value: 1 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: ARG1 +Value: + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Got +AppData: sub-record-check,s,1(out,989062021999,dontcare) + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __MONTH +Value: 08 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: __MON_FMT +Value: wav + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 4 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) +Variable: RECMODE +Value: yes + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: LOCAL(ARGC) +Value: 3 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489628.10141 +Linkedid: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/out-989062021999-10-20240824-115348-1724489628.10141.wav,abi(), +Variable: __CALLFILENAME +Value: out-989062021999-10-20240824-115348-1724489628.10141 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: recordcheck +Application: Return +AppData: +Variable: __REC_STATUS +Value: RECORDING + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: ARG1 +Value: +Extension: out +Application: Return +AppData: + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062021999 +Priority: 7 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: 989062021999 +Application: Set +AppData: _CALLERIDNAMEINTERNAL=Регистратура_3 +Variable: MOHCLASS +Value: default + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062021999 +Priority: 11 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: 989062021999 +Application: Macro +AppData: dialout-trunk,6,+79062021999,,off +Variable: MACRO_CONTEXT +Value: from-internal + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?chanfull + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: 10 + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 6 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10-000011dd +Variable: MACRO_DEPTH +Value: 2 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628. +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-o +Exten: s +Priority: 13 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: ExecIf +AppData: 0?Hangup() +Variable: MACRO_DEPTH +Value: 2 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> +Extension: s +Application: Set +AppData: USEROUTCID="SecretyDolgoletiya" <79217365096> + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:53:48 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-cal +Exten: s +Priority: 32 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)=78162769402) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 36 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=prohib_passed_screen) + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 41 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: Set +AppData: CDR(outbound_cnam)= +Variable: MACRO_DEPTH +Value: 2 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: OUTNUM +Value: +79062021999 +Extension: s +Application: Set +AppData: OUTNUM=+79062021999 + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) +Variable: MACRO_DEPTH +Value: 1 + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: ARG1 +Value: 6 +Extension: s +Application: MacroExit +AppData: + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79062021999 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79062021999) + + +11:53:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/+79062021999@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79062021999^989062021999^6^1724489628^^78162769402) + + +11:53:48 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +Variable: PROGRESSTIME_MS +Value: + + +11:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +Variable: __RECORD_ID +Value: PJSIP/10-000011dd + + +11:53:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +Variable: __DIAL_OPTIONS +Value: HhTtr + + +11:53:49 + +Event: VarSet +Privilege: dialplan, +Channel: PJSIP/rt_769402-000011de +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: SIPHEADERKEYS +Value: Alert-Info +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info + + +11:53:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 7 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 1?Set(PJSIP_HEADER(remove,Alert-Info)=) + + +11:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +Extension: s +Application: While +AppData: 0 +Variable: func-apply +Value: + + +11:53:49 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011de +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989062021999 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489628.10142 +DestLinkedid: 1724489628.10141 +DialString: +79062021999@rt_769402 + + +11:53:49 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +Extension: 989062021999 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/rt_769402 +State: RINGING + + +11:53:49 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: RINGTIME_MS +Value: 795 +DestChannel: PJSIP/rt_769402-000011de +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989062021999 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989062021999 +DestPriority: 1 +DestUniqueid: 1724489628.10142 +DestLinkedid: 1724489628.10141 +DialStatus: RINGING +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:53:54 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011dd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: PROGRESSTIME_MS +Value: 6093 +DestChannel: PJSIP/rt_769402-000011de +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989062021999 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989062021999 +DestPriority: 1 +DestUniqueid: 1724489628.10142 +DestLinkedid: 1724489628.10141 +DialStatus: PROGRESS + + +11:54:00 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3f574689 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489640.021389 +SentRTP: 1724529632 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xf615d391 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3198 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:54:05 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 84.7 +SSRC: 0x3f574689 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489645.019806 +SentRTP: 1724569472 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0xf615d391 +Report0FractionLost: 1 +Report0CumulativeLost: 1 +Report0HighestSequence: 3448 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:54:10 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 84.9 +SSRC: 0x3f574689 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489650.020231 +SentRTP: 1724609632 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0xf615d391 +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 3698 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:54:20 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.1 +SSRC: 0x3f574689 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489660.020580 +SentRTP: 1724689472 +SentPackets: 1250 +SentOctets: 200000 +Report0SourceSSRC: 0xf615d391 +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 4198 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:54:25 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.1 +SSRC: 0x3f574689 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489665.020949 +SentRTP: 1724729472 +SentPackets: 1500 +SentOctets: 240000 +Report0SourceSSRC: 0xf615d391 +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 4448 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:54:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +11:54:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +11:54:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +Variable: BRIDGEPEER +Value: PJSIP/10-000011dd +DestChannel: PJSIP/rt_769402-000011de +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989062021999 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489628.10142 +DestLinkedid: 1724489628.10141 +DialStatus: ANSWER +BridgeUniqueid: cf4535a3-9950-4eed-af46-2e3cb86bc97d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +11:54:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: BRIDGEPVTCALLID +Value: d17c472f-83c0-43e4-aad0-824f4c01112b + + +11:54:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:54:28 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011dd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: cf4535a3-9950-4eed-af46-2e3cb86bc97d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:54:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_EXTEN +Value: + + +11:54:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:54:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011de +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489628.10142 +Linkedid: 1724489628.10141 +Variable: RTPAUDIOQOSMES +Value: minrxmes=084.696090; maxrxmes=085.367289; avgrxmes=085.043 +BridgeUniqueid: cf4535a3-9950-4eed-af46-2e3cb86bc97d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:54:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011dd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489628.1 +Linkedid: 1724489628.10141 +Extension: s +Application: Hangup +AppData: +Source: 78162769402 +Destination: 989062021999 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011de +LastApplication: Dial +LastData: PJSIP/+79062021999@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 39 +BillableSeconds: 2 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489628.10141 +UserField: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Variable: MACRO_CONTEXT +Value: + + +11:54:28 + +Event: UserEvent +Privilege: us +Channel: PJSIP/10-000011dd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489628.10141 +Linkedid: 1724489628.10141 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000140; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:54:28 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10167 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116452295 +Priority: 1 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489679.1 +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011df + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:54:39 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489679.10143 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116452295 +Priority: 2 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116452295 +Application: Gosub +AppData: sub-record-check,s,1(out,989116452295,dontcare) + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489679.10143 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489679.10143 +Linkedid: 172448 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: __CALLFILENAME +Value: out-989116452295-10-20240824-115439-1724489679.10143 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116452295-10-20240824-115439-1724489679.10143 + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989116452295-10-20240824-115439-1724489679.10143.wav + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116452295 +Priority: 7 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679. +Variable: MOHCLASS +Value: default +Extension: 989116452295 +Application: Set +AppData: MOHCLASS=default + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116452295 +Priority: 11 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_EXTEN +Value: 989116452295 +Extension: 989116452295 +Application: Macro +AppData: dialout-trunk,6,+79116452295,,off + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79116452295 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79116452295 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116452295) + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Extension: s +Application: Dial +AppData: PJSIP/+79116452295@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116452295^989116452295^6^1724489679^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: PROGRESSTIME +Value: + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +Variable: __REC_STATUS +Value: RECORDING + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +Variable: __DAY +Value: 24 + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +11:54:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +11:54:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489679.1 +Linkedid: 1724489679.10143 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +11:54:39 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011e0 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116452295 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489679.10144 +DestLinkedid: 1724489679.10143 +DialString: +79116452295@rt_769402 + + +11:54:39 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Extension: 989116452295 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Variable: RINGTIME_MS +Value: 320 +DestChannel: PJSIP/rt_769402-000011e0 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116452295 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116452295 +DestPriority: 1 +DestUniqueid: 1724489679.10144 +DestLinkedid: 1724489679.10143 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:54:42 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011df +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: PROGRESSTIME_MS +Value: 3236 +DestChannel: PJSIP/rt_769402-000011e0 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116452295 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116452295 +DestPriority: 1 +DestUniqueid: 1724489679.10144 +DestLinkedid: 1724489679.10143 +DialStatus: PROGRESS + + +11:54:48 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116452295 +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7666a5c4 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489688.060223 +SentRTP: 1724529680 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x94fd35fa +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 29648 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:54:53 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116452295 +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7666a5c4 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489693.060441 +SentRTP: 1724569680 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x94fd35fa +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 29898 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:54:58 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116452295 +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7666a5c4 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489698.061568 +SentRTP: 1724609680 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x94fd35fa +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 30148 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:55:03 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116452295 +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7666a5c4 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489703.061257 +SentRTP: 1724649680 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0x94fd35fa +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 30398 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:55:08 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116452295 +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7666a5c4 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489708.060561 +SentRTP: 1724689680 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0x94fd35fa +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 30648 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:55:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116452295 +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +11:55:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +11:55:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +Variable: BRIDGEPEER +Value: PJSIP/10-000011df +DestChannel: PJSIP/rt_769402-000011e0 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116452295 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489679.10144 +DestLinkedid: 1724489679.10143 +DialStatus: ANSWER +BridgeUniqueid: 1f25410a-f7da-4f0a-981a-0b6c74af264a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +11:55:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: BRIDGEPVTCALLID +Value: 761a8c8b-a46d-4dd8-8957-e2d5e4cdb39f + + +11:55:13 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7666a5c4 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489713.060857 +SentRTP: 1724729520 +SentPackets: 1500 +SentOctets: 240000 +Report0SourceSSRC: 0x94fd35fa +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 30898 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:55:18 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7666a5c4 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489718.060587 +SentRTP: 1724769520 +SentPackets: 1750 +SentOctets: 280000 +Report0SourceSSRC: 0x94fd35fa +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 31149 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:55:23 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7666a5c4 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489723.061467 +SentRTP: 1724809680 +SentPackets: 2001 +SentOctets: 320160 +Report0SourceSSRC: 0x94fd35fa +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 31399 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:55:28 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7666a5c4 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489728.061154 +SentRTP: 1724849680 +SentPackets: 2251 +SentOctets: 360160 +Report0SourceSSRC: 0x94fd35fa +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 31649 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:55:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:55:31 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011df +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 1f25410a-f7da-4f0a-981a-0b6c74af264a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:55:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_EXTEN +Value: + + +11:55:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116452295 +ConnectedLineName: C +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:55:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011df +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: RTPAUDIOQOS +Value: ssrc=992082355;themssrc=1345133054;lp=0;rxjitter=0.000000;rxcount=2417;txjitter=0.001250;txcount=2421;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Extension: s +Application: Hangup +AppData: + + +11:55:31 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116452295 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724489679.10143 +Linkedid: 1724489679.10143 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Source: 78162769402 +Destination: 989116452295 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011e0 +LastApplication: Dial +LastData: PJSIP/+79116452295@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 51 +BillableSeconds: 21 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489679.10143 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10168 +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:55:31 + +Event: Hangup +Privilege: call,all +BridgeUniqueid: 1f25410a-f7da-4f0a-981a-0b6c74af264a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-000011e0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116452295 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489679.10144 +Linkedid: 1724489679.10143 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000155; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 + + +11:55:31 + +Event: UserEvent +Privilege: user,all +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/RT_769402 +ActionID: 10169 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989506831264 +Priority: 1 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489743.1 +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011e1 + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:55:44 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489743.10145 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989506831264 +Priority: 2 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989506831264 +Application: Gosub +AppData: sub-record-check,s,1(out,989506831264,dontcare) + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489743.10145 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489743.10145 +Linkedid: 172448 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: __CALLFILENAME +Value: out-989506831264-10-20240824-115543-1724489743.10145 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989506831264-10-20240824-115543-1724489743.10145 + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989506831264-10-20240824-115543-1724489743.10145.wav + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989506831264 +Priority: 7 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743. +Variable: MOHCLASS +Value: default +Extension: 989506831264 +Application: Set +AppData: MOHCLASS=default + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989506831264 +Priority: 11 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_EXTEN +Value: 989506831264 +Extension: 989506831264 +Application: Macro +AppData: dialout-trunk,6,+79506831264,,off + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79506831264 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79506831264 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79506831264) + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79506831264 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79506831264 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Extension: s +Application: Dial +AppData: PJSIP/+79506831264@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79506831264^989506831264^6^1724489743^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79506831264 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: PROGRESSTIME +Value: + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +Variable: __REC_STATUS +Value: RECORDING + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +Variable: __DAY +Value: 24 + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +11:55:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +11:55:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489744.1 +Linkedid: 1724489743.10145 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +11:55:44 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989506831264 +Priority: 1 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011e2 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989506831264 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489744.10146 +DestLinkedid: 1724489743.10145 +DialString: +79506831264@rt_769402 + + +11:55:44 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011e1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506831264 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: RINGTIME_MS +Value: 336 +DestChannel: PJSIP/rt_769402-000011e2 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989506831264 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989506831264 +DestPriority: 1 +DestUniqueid: 1724489744.10146 +DestLinkedid: 1724489743.10145 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Device: PJSIP/10 +State: INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:55:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989506831264 +Priority: 1 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +11:55:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +11:55:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +Variable: BRIDGEPEER +Value: PJSIP/10-000011e1 +DestChannel: PJSIP/rt_769402-000011e2 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989506831264 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489744.10146 +DestLinkedid: 1724489743.10145 +DialStatus: ANSWER +BridgeUniqueid: 99cc078c-ed40-4350-b3dc-32934dbe3254 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +11:55:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506831264 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: BRIDGEPVTCALLID +Value: 8a2c0402-95b8-45f5-94cc-301c57e33ed8 + + +11:55:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:55:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724489759.10147 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:55:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724489759. +Linkedid: 1724489759.10147 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-115559 +Variable: __YEAR +Value: 2024 + + +11:55:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:55:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +11:55:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:55:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +11:55:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +11:55:59 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE +Device: PJSIP/Megafon_3 +State: INUSE + + +11:55:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +11:56:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 21 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(name-pres)=allowed_not_screened + + +11:56:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: 2 +Application: AGI +AppData: agi + + +11:56:00 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +CommandId: 2051019610 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +11:56:00 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +CommandId: 1411766891 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +11:56:01 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +CommandId: 1463645787 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +11:56:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +CommandId: 145843866 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +11:56:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724489759.101 +Linkedid: 1724489759.10147 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +11:56:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489759.10 +Linkedid: 1724489759.10147 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +11:56:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: AMPUSER +Value: 79539042899 +Extension: s +Application: Set +AppData: AMPUSER=79539042899 + + +11:56:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +11:56:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +11:56:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +11:56:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +11:56:01 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:56:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +11:56:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +11:56:01 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +11:56:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +11:56:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795390 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +11:56:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +11:56:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +11:56:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +11:56:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +11:56:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:56:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:56:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +11:56:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +11:56:01 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 84.0 +SSRC: 0x33b203dc +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489761.356745 +SentRTP: 1724529752 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xaa49f44c +Report0FractionLost: 1 +Report0CumulativeLost: 1 +Report0HighestSequence: 15786 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 44 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: 194 +Application: Set +AppData: VQ_AANNOUNCE= +Variable: QAANNOUNCE +Value: + + +11:56:10 + +Event: VarS +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 50 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: 194 +Application: Set +AppData: VQ_MAXWAIT= +Variable: QMAXWAIT +Value: 600 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Variable: QUEUEJOINTIME +Value: 1724489769 +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queu +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489769.10148 +Linkedid: 1724489759.10147 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000011e3 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489769.10148 +Linkedid: 1724489759.10147 +Variable: __MON_FMT +Value: wav + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: __SIGNORE +Value: TRUE + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 172448976 +Linkedid: 1724489759.10147 +Variable: __DAY +Value: 24 + + +11:56:10 + +Event: Newchannel +Privilege: call,all +Channel: Local/13@from-queue-00000ada;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ad9;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724489769.10148 +LocalOneLinkedid: 1724489759.10147 +LocalTwoChannel: Local/12@from-queue-00000ad9;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539042899 +LocalTwoCallerIDName: 79539042899 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724489769.10149 +LocalTwoLinkedid: 1724489759.10147 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ad9;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724489769.10148 +DestLinkedid: 1724489759.10147 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489769.10150 +Linkedid: 172 +Extension: 12 +Application: Set +AppData: QAGENT=12 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489769.10150 +Linkedid: 1724489759 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489769.10150 +Linkedid: 1724489759.10147 +Variable: __REC_STATUS +Value: INITIALIZED + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: 12 +Application: GotoIf +AppData: 1?194,1 +Variable: __QCONTEXT +Value: 0 + + +11:56:10 + +Event: VarSet +Privilege: dia +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: __DAY +Value: 24 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 2 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: __RINGTIMER +Value: 60 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Extension: 12 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: ARG5 +Value: 0 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724489769.10149 +Variable: TOUCH_MONITOR +Value: 1724489769.10149 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000ad9;2 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000ad9;2 + + +11:56:10 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 7 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Extension: s +Application: Set +AppData: CALLERID(number)=79539042899 +Variable: MACRO_DEPTH +Value: 2 +LocalOneChannel: Local/13@from-queue-00000ada;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724489769.10150 +LocalOneLinkedid: 1724489759.10147 +LocalTwoChannel: Local/13@from-queue-00000ada;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539042899 +LocalTwoCallerIDName: 79539042899 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724489769.10151 +LocalTwoLinkedid: 1724489759.10147 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000ada;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489769.10150 +DestLinkedid: 1724489759.10147 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 2 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: 13 +Application: Set +AppData: __FROMQ=true +Variable: QAGENT +Value: 13 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: 13 +Application: Set +AppData: 1?ext-local,13,1 +Variable: DB_RESULT +Value: 0 + + +11:56:10 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: ARG3 +Value: 0 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: AMPUSER +Value: 79539042899 +Extension: s +Application: Set +AppData: AMPUSER=79539042899 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: s +Application: Se +AppData: CDR(cnam)=79539042899 +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: s +Application: Set +AppData: CALLERID(number)=79539042899 +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: ARG1 +Value: novm + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724489770 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-115610 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: LOCAL(ARG2) +Value: yes +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724489769.10151 +Linkedid: 172448 +Variable: RECFROMEXTEN +Value: 79539042899 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79539042899) + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79539042899-20240824-115610-1724489769.10151.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-13-79539042899-20240824-115610-1724489769.10151.wav + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: MACRO_DEPTH +Value: 1 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 7 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 2 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=13) + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Exec +AppData: 0?Return() + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: DB_RESULT +Value: PJSIP/13 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: dstring +Priority: 14 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:56:10 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000ad9;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489769.10148 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79539042899-20240824-115610-1724489769 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000ad9;2 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 2 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +11:56:10 + +Event: Var +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489769.10151 +Linkedid: +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: PROGRESSTIME_MS +Value: + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 17 +Linkedid: 1724489759.10147 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011e4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489770.10152 +Linkedid: 1724489759.10147 +Variable: __REC_POLICY_MODE +Value: YES + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011e4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489770.10152 +Linkedid: 1724489759.10147 +Variable: __RINGTIMER +Value: 60 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011e4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489770.10152 +Linkedid: 1724489759.10147 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011e4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724489770.10152 +Linkedid: 1724489759.10147 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +11:56:10 + +Event: DialBegin +Privilege: call,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724489770.10152 +Linkedid: 1724489759.10147 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +DestChannel: Local/13@from-queue-00000ada;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489769.10150 +DestLinkedid: 1724489759.10147 +DialStatus: RINGING +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:56:10 + +Event: Newexten +Privilege: dialpla +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489759.10147 +Variable: ITER +Value: 1 +Extension: dstring +Application: Set +AppData: ITER=1 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 795390 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: Ne +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1 +Linkedid: 1724489759.10147 +Variable: ARGC +Value: +Extension: ctset +Application: Return +AppData: + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795390428 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 41 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Device: Local/13@from-queue +State: INUSE +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_1 + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +11:56:10 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/12-000011e5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: PROGRESSTIME_MS +Value: + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011e5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: __FROMEXTEN +Value: wav + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011e5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: __FROMQ +Value: true + + +11:56:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011e5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:56:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011e5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +11:56:10 + +Event: DialBegin +Privilege: call,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-000011e5 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042 + + +11:56:10 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +DestChannel: Local/12@from-queue-00000ad9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489769.10148 +DestLinkedid: 1724489759.10147 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE + + +11:56:11 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 84.9 +SSRC: 0x33b203dc +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489771.356761 +SentRTP: 1724609592 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0xaa49f44c +Report0FractionLost: 0 +Report0CumulativeLost: 1 +Report0HighestSequence: 16287 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:56:12 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 2539 +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/12 +State: RINGING +DestChannel: PJSIP/12-000011e5 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724489770.10153 +DestLinkedid: 1724489759.10147 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 334 +LastCall: 1724489560 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:56:13 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3211 +DestChannel: PJSIP/13-000011e4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724489770.10152 +DestLinkedid: 1724489759.10147 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:56:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506831264 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +11:56:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506831264 +CallerIDName: +ConnectedLineNum: 989506831264 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: BRIDGEPVTCALLID +Value: + + +11:56:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506831264 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: ARG1 +Value: +BridgeUniqueid: 99cc078c-ed40-4350-b3dc-32934dbe3254 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:56:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 98950 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: MACRO_CONTEXT +Value: from-internal +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:56:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506831264 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: +Linkedid: 1724489743.10145 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Source: 78162769402 +Destination: 989506831264 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011e2 +LastApplication: Dial +LastData: PJSIP/+79506831264@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 30 +BillableSeconds: 18 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489743.10145 +UserField: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +11:56:14 + +Event: Hangup +Privilege: +Channel: PJSIP/10-000011e1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989506831264 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489743.10145 +Linkedid: 1724489743.10145 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000240; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +11:56:14 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: 99cc078c-ed40-4350-b3dc-32934dbe3254 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-000011e2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +Variable: RTPAUDIOQOSRTT +Value: minrxlost=001.000000; maxrxlost=001.000000; avgrxlost=000.333333; stdevrxlost=000.471405; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +11:56:14 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/RT_769402 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989506831264 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489744.10146 +Linkedid: 1724489743.10145 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10171 + + +11:56:16 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/12 +State: INUSE +Channel: PJSIP/12-000011e5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 795390 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: MACRO_PRIORITY +Value: 1 +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 334 +LastCall: 1724489560 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:56:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011e5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CFIGNORE= + + +11:56:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011e5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +11:56:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011e5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Ре +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +11:56:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011e5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=12/sip + + +11:56:16 + +Event: BridgeEnter +Privilege: call,all +Channel: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/12-000011e5 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724489770.10153 +DestLinkedid: 1724489759.10147 +DialStatus: ANSWER +Device: Local/12@from-queue +State: INUSE +BridgeUniqueid: 3dcb465f-5436-4c5a-90d4-5677763fb7dc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +11:56:16 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: 3dcb465f-5436-4c5a-90d4-5677763fb7dc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489759.10 +Linkedid: 1724489759.10147 +Variable: BRIDGEPVTCALLID +Value: 0aac464f-367a-4b68-aa9d-3efb08877d5c +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/12@from-queue-00000ad9;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489769.10148 +DestLinkedid: 1724489759.10147 +DialStatus: ANSWER + + +11:56:16 + +Event: AgentConnect +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Device: Queue +State: NOT_INUSE +DestChannel: Local/13@from-queue-00000ada;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489769.10150 +DestLinkedid: 1724489759.10147 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 + + +11:56:16 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 5e065bc6-1c2f-49da-a06e-d79cfcfdf45a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 55 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +DestChannel: PJSIP/13-000011e4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724489770.10152 +DestLinkedid: 1724489759.10147 +DialStatus: CANCEL +Variable: ARG3 +Value: 0 + + +11:56:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 55 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_EXTEN +Value: + + +11:56:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Source: 79539042899 +Destination: 13 +DestinationContext: ext-local +CallerID: "79539042899" <79539042899> +DestinationChannel: PJSIP/13-000011e4 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724489769.10151 +UserField: + + +11:56:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ada;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489769.10151 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE + + +11:56:16 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10174 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: 5e065bc6-1c2f-49da-a06e-d79cfcfdf45a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +11:56:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: BRIDGEPEER +Value: Local/12@from-queue-00000ad9;1 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116067952 +Priority: 1 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724489785.1 +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011e6 + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +11:56:25 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489785.10154 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116067952 +Priority: 2 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116067952 +Application: Gosub +AppData: sub-record-check,s,1(out,989116067952,dontcare) + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724489785.10154 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489785.10154 +Linkedid: 172448 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: __CALLFILENAME +Value: out-989116067952-10-20240824-115625-1724489785.10154 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116067952-10-20240824-115625-1724489785.10154 + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989116067952-10-20240824-115625-1724489785.10154.wav + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116067952 +Priority: 7 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785. +Variable: MOHCLASS +Value: default +Extension: 989116067952 +Application: Set +AppData: MOHCLASS=default + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116067952 +Priority: 11 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_EXTEN +Value: 989116067952 +Extension: 989116067952 +Application: Macro +AppData: dialout-trunk,6,+79116067952,,off + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79116067952 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79116067952 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116067952) + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Extension: s +Application: Dial +AppData: PJSIP/+79116067952@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116067952^989116067952^6^1724489785^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: PROGRESSTIME +Value: + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489785.10155 +Linkedid: 1724489785.10154 +Variable: __REC_STATUS +Value: RECORDING + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724489785.10155 +Linkedid: 1724489785.10154 +Variable: __DAY +Value: 24 + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724489785.10155 +Linkedid: 1724489785.10154 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +11:56:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724489785.10155 +Linkedid: 1724489785.10154 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +11:56:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489785.1 +Linkedid: 1724489785.10154 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +11:56:25 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011e7 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116067952 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489785.10155 +DestLinkedid: 1724489785.10154 +DialString: +79116067952@rt_769402 + + +11:56:25 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dialout-trunk +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 28 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Extension: 989116067952 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Variable: RINGTIME_MS +Value: 370 +DestChannel: PJSIP/rt_769402-000011e7 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116067952 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116067952 +DestPriority: 1 +DestUniqueid: 1724489785.10155 +DestLinkedid: 1724489785.10154 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:56:29 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011e6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: PROGRESSTIME_MS +Value: 3709 +DestChannel: PJSIP/rt_769402-000011e7 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116067952 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116067952 +DestPriority: 1 +DestUniqueid: 1724489785.10155 +DestLinkedid: 1724489785.10154 +DialStatus: PROGRESS + + +11:56:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116067952 +Priority: 1 +Uniqueid: 1724489785.10155 +Linkedid: 1724489785.10154 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +11:56:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724489785.10155 +Linkedid: 1724489785.10154 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +11:56:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489785.10155 +Linkedid: 1724489785.10154 +Variable: BRIDGEPEER +Value: PJSIP/10-000011e6 +DestChannel: PJSIP/rt_769402-000011e7 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116067952 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724489785.10155 +DestLinkedid: 1724489785.10154 +DialStatus: ANSWER +BridgeUniqueid: fffaae08-028e-443a-8dcf-ec66fce90087 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +11:56:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: BRIDGEPVTCALLID +Value: 0bf1b493-8e2a-42c9-89b3-ebb8168af66d + + +11:56:34 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489785.10155 +Linkedid: 1724489785.10154 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x410d67c2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724489794.285971 +SentRTP: 1724529624 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x70a98b6c +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 9119 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +11:56:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 98 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +11:56:34 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011e6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: fffaae08-028e-443a-8dcf-ec66fce90087 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:56:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_EXTEN +Value: + + +11:56:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +11:56:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724489785.10155 +Linkedid: 1724489785.10154 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; std +BridgeUniqueid: fffaae08-028e-443a-8dcf-ec66fce90087 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:56:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Variable: MACRO_PRIORITY +Value: +Device: PJSIP/rt_769402 +State: NOT_INUSE +Source: 78162769402 +Destination: 989116067952 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011e7 +LastApplication: Dial +LastData: PJSIP/+79116067952@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 9 +BillableSeconds: 4 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489785.10154 +UserField: + + +11:56:34 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10-000011e6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724489785.10154 +Linkedid: 1724489785.10154 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000210; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:56:34 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10176 + + +11:56:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: RTPAUDIOQOSLOSSBRIDGED +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +11:56:39 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/12-000011e5 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 3dcb465f-5436-4c5a-90d4-5677763fb7dc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +11:56:39 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Channel: PJSIP/12-000011e5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724489770.10153 +Linkedid: 1724489759.10147 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000307; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 334 +LastCall: 1724489560 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:56:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489769.10148 +Linkedid: 1724489759.10147 +Variable: RTPAUDIOQOSLOSSBRIDGED +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +11:56:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539042899 +ConnectedLineName: 79539042899 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: +Linkedid: 1724489759.10147 +Variable: BRIDGEPEER +Value: +DestChannel: Local/12@from-queue-00000ad9;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539042899 +DestConnectedLineName: 79539042899 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489769.10148 +DestLinkedid: 1724489759.10147 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 7 +TalkTime: 23 +Reason: caller +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10177 + + +11:56:39 + +Event: VarSet +Privilege: d +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724489759.10147 +Linkedid: 1724489759.10147 +Variable: MACRO_EXTEN +Value: h +BridgeUniqueid: 5e065bc6-1c2f-49da-a06e-d79cfcfdf45a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Extension: h +Application: Macro +AppData: hangupcall, + + +11:56:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 172448 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Device: Local/12@from-queue +State: NOT_INUSE + + +11:56:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Loc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: DIALEDTIME +Value: 29 +BridgeUniqueid: 3dcb465f-5436-4c5a-90d4-5677763fb7dc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:56:39 + +Event: VarSet +Privilege: dialp +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 0 + + +11:56:39 + +Event: Cdr +Privilege: cdr,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:56:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ad9;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +11:56:39 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-000011e3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000168; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=076.002370; stdevtxmes=022.862885; +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Source: 79539042899 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79539042899" <79539042899> +DestinationChannel: Local/13@from-queue-0000 + + +11:56:39 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshc +Channel: Local/12@from-queue-00000ad9;2 +ActionID: 10178 +AccountCode: +Source: 79539042899 +Destination: 12 +DestinationContext: ext-local +CallerID: "79539042899" <79539042899> +DestinationChannel: PJSIP/12-000011e5 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 29 +BillableSeconds: 23 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489769.10149 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539042899 +CallerIDName: 79539042899 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489769.10149 +Linkedid: 1724489759.10147 +Variable: MACRO_PRIORITY +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE + + +11:56:39 + +Event: SuccessfulAuth +Privilege: security,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/12@FROM-QUEUE +ActionID: 10180 +EventTV: 2024-08-24T11 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 00A82B11-5B5B-EF11-AE2D-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: +UsingPassword: 1 + + +11:58:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +11:58:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:58:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-115851 +Variable: __YEAR +Value: 2024 + + +11:58:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +11:58:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +11:58:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724489931.10156 +Linkedid: 17244899 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:58:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: 78162769402 +Application: Set +AppData: __FROM_DID=78162769402 +Variable: __FROM_DID +Value: 78162769402 + + +11:58:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 3 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +11:58:51 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:58:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 2 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:58:51 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +CommandId: 394556604 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +11:58:51 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +CommandId: 1201021676 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +11:58:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +CommandId: 1391300874 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +11:58:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 19 +Priority: 1 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +11:58:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-u +Exten: s +Priority: 3 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +11:58:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 7911 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: AMPUSER +Value: 79116021080 +Extension: s +Application: Set +AppData: AMPUSER=79116021080 + + +11:58:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +11:58:51 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +11:58:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Goto +AppData: 0?Set(__CIDMASQUERADING=TRUE) + + +11:58:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +11:58:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 50 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: s +Application: Set +AppData: CALLERID(name)=79116021080 +Variable: MACRO_DEPTH +Value: 1 + + +11:58:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +11:58:51 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: 194 +Application: Answer +AppData: +Device: PJSIP/rt_769402 +State: INUSE + + +11:58:52 + +Event: Var +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/rt_769402-000011e8) + + +11:58:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: MacroExit +AppData: + + +11:58:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +11:58:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: VQ_AINFO +Value: +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare + + +11:58:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: 194 +Application: Set +AppData: QRINGOPTS=R +Variable: QRINGOPTS +Value: R + + +11:58:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +11:58:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +11:58:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-re +Exten: s +Priority: 1 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +11:58:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +11:58:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:58:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +11:58:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 43 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: QAANNOUNCE +Value: + + +11:59:01 + +Event: Ne +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 49 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: QMAXWAIT +Value: 600 +Extension: 194 +Application: Set +AppData: QMAXWAIT=600 + + +11:59:01 + +Event: Newchannel +Privilege: call,all +Channel: Local/12@from-queue-00000adb;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489941.10157 +Linkedid: 1724489931.1015 +Variable: QUEUEJOINTIME +Value: 1724489941 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489941.10157 +Linkedid: 1724489931.10156 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489941.10157 +Linkedid: 1724489931.10156 +Variable: __MON_FMT +Value: wav + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: < +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: __SIGNORE +Value: TRUE + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: __REC_STATUS +Value: INITIALIZED + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000adb;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724489941.10157 +LocalOneLinkedid: 1724489931.10156 +LocalTwoChannel: Local/12@from-queue-00000adb;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116021080 +LocalTwoCallerIDName: 79116021080 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724489941.10158 +LocalTwoLinkedid: 1724489931.10156 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000adb;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724489941.10157 +DestLinkedid: 1724489931.10156 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: __FROMQ +Value: true +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: DB_RESULT +Value: EXTENSION + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489941.10159 +Linkedid: 1724489931.10156 +Variable: __FROM_DID +Value: 78162769402 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: +Linkedid: 1724489931.10156 +Variable: __QC_CONFIRM +Value: 0 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: __CALLINGNUMPRES_SV +Value: + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: __REC_STATUS +Value: INITIALIZED + + +11:59:01 + +Event: Newchannel +Privilege: call,all +Channel: Local/10@from-queue-00000add;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489941.10161 +Linkedid: 1724489931.10156 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000adc;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724489941.10159 +LocalOneLinkedid: 1724489931.10156 +LocalTwoChannel: Local/13@from-queue-00000adc;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116021080 +LocalTwoCallerIDName: 79116021080 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724489941.10160 +LocalTwoLinkedid: 1724489931.10156 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000adc;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724489941.10159 +DestLinkedid: 1724489931.10156 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489941.10161 +Linkedid: 1724489931.10156 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ad +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489941.10161 +Linkedid: 1724489931.10156 +Variable: __REVERSAL_REJECT +Value: FALSE + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489941.10161 +Linkedid: 1724489931.10156 +Variable: __MONTH +Value: 08 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: ARG5 +Value: 0 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724489941.10158 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +11:59:01 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: __DIRECTION +Value: +Extension: s +Application: Set +AppData: CALLERID(number)=79116021080 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:59:01 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: +Priority: 8 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: HOTDESCKCHAN +Value: 12@from-queue-00000adb;2 +LocalOneChannel: Local/10@from-queue-00000add;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724489941.10161 +LocalOneLinkedid: 1724489931.10156 +LocalTwoChannel: Local/10@from-queue-00000add;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116021080 +LocalTwoCallerIDName: 79116021080 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724489941.10162 +LocalTwoLinkedid: 1724489931.10156 +LocalOptimization: No +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000adb;2 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +DestChannel: Local/10@from-queue-00000add;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724489941.10161 +DestLinkedid: 1724489931.10156 +DialString: Local/10@from-queue/n + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: __FROMQ +Value: true + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1 +Linkedid: 1724489931.10156 +Variable: __RINGTIMER +Value: 60 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724489941.10162 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=10 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,al +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000add;2 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: VarSet +Privilege: +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79116021080 + + +11:59:01 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000add;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: from-q +Exten: 194 +Priority: 1 +Uniqueid: 1724489941.10161 +Linkedid: 1724489931.10156 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exte +Exten: s +Priority: 2 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79116021080-20240824-115901-1724489941.10162.wav,abi(), + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000add;2 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 17244 +Linkedid: 1724489931.10156 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 17244 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724489941.1016 +Linkedid: 1724489931.10156 +Variable: ITER +Value: 1 +Extension: dstring +Application: Set +AppData: ITER=1 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724489941.1 +Linkedid: 1724489931.10156 +Variable: ARGC +Value: +Extension: ctset +Application: Return +AppData: + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACR +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: +Linkedid: 1724489931.10156 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_3 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: DIALEDPEERNUMBE +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: PROGRESSTIME_MS +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO +Value: TRUE +Extension: s +Application: GotoIf +AppData: 1?continue + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724489941.10158 +Linkedid: 17 +Variable: __FROMEXTEN +Value: 79116021080 +Extension: s +Application: Set +AppData: CALLERID(number)=79116021080 + + +11:59:01 + +Event: VarSet +Privilege: di +Channel: PJSIP/10-000011e9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489941.10163 +Linkedid: 1724489931.10156 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: Set +AppData: CALLERID(name)=79116021080 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489941.10163 +Linkedid: 1724489931.10156 +Variable: __BLKVM_CHANNEL +Value: PJSIP/rt_769402-000011e8 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e9 +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724489941.10163 +Linkedid: 1724489931.10156 +Variable: __DIRECTION +Value: +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011e9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489941.10163 +Linkedid: 1724489931.10156 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724489941 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116021080) + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/2 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79116021080-20240824-115901-1724489941.10158.wav,abi(), + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931. +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: DEXTEN +Value: 12 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724489941.10158 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +11:59:01 + +Event: VarSet +Privilege: dialpl +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: ctset +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +11:59:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNOR + + +11:59:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 1?godial + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout- +Exten: s +Priority: 1 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791160210 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: DIALEDPEERNAME +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +11:59:02 + +Event: Newstate +Privilege: call,all +Channel: Local/10@from-queue-00000add;1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: PROGRESSTIME_MS +Value: +DestChannel: PJSIP/10-000011e9 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489941.10163 +DestLinkedid: 1724489931.10156 +DialString: 10/sip + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011ea +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489941.10164 +Linkedid: 1724489931.10156 +Device: Local/10@from-queue +State: INUSE +Variable: __CALLFILENAME +Value: external-12-79116021080-20240824-115901-1724489941.10158 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011ea +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489941.10164 +Linkedid: 1724489931.10156 +Variable: __TTL +Value: 63 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011ea +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1 +Linkedid: 1724489931.10156 +Variable: __FROMQUEUEEXTEN +Value: 79116021080 + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011ea +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724489941.10164 +Linkedid: 1724489931.10156 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/12-000011ea + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011ea +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724489941.10164 +Linkedid: 1724489931.10156 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +11:59:02 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: __RINGTIMER +Value: 60 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: 13 +Priority: 3 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724489941.10160 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: HOTDESCKCHAN +Value: 13@from-queue-00000adc;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000adc;2 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 2 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 172448 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79116021080 + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79116021080 +DestChannel: PJSIP/12-000011ea +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724489941.10164 +DestLinkedid: 1724489931.10156 +DialString: 12/sip + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +DestChannel: Local/12@from-queue-00000adb;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489941.10157 +DestLinkedid: 1724489931.10156 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE +Variable: MACRO_EXTEN +Value: 13 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: __TIMESTR +Value: 20240824-115901 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-115901 + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724489941.1 +Linkedid: 1724489931.10156 +Extension: s +Application: NoOp +AppData: Recordings initialized +Variable: MACRO_DEPTH +Value: 1 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exte +Priority: 11 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116021080) + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79116021080-20240824-115901-1724489941.10160.wav,abi(), + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=13) + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GosubIf +AppData: 1?dstring,1() + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial- +Exten: dstring +Priority: 4 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 7816 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 +Variable: THISDIAL +Value: PJSIP/13 + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: dstring +Application: NoOp +AppData: Debug +Variable: MACRO_DEPTH +Value: 2 + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724489941.10160 +Linkedid: 1724 +Variable: DSTRING +Value: PJSIP/13/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 30 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +11:59:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: ANSWEREDTIME_MS +Value: + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011eb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489941.10165 +Linkedid: 1724489931.10156 +Variable: __REC_STATUS +Value: RECO + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011eb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489941.10165 +Linkedid: 1724489931.10156 +Variable: __DAY +Value: 24 + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011eb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724489941.10165 +Linkedid: 1724489931.10156 +Variable: __QCONTEXT +Value: 0 + + +11:59:02 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-000011eb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724489941.10165 +Linkedid: 1724489931.10156 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +11:59:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011eb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724489941.10165 +Linkedid: 1724489931.10156 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +11:59:02 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 791160 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/13@from-queue-00000adc;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489941.10159 +DestLinkedid: 1724489931.10156 +DialString: 13/sip +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE + + +11:59:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 2894 +Device: PJSIP/10 +State: RINGING + + +11:59:04 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +DestChannel: Local/10@from-queue-00000add;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489941.10161 +DestLinkedid: 1724489931.10156 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:59:04 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 55 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 3578 +DestChannel: PJSIP/12-000011ea +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724489941.10164 +DestLinkedid: 1724489931.10156 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 335 +LastCall: 1724489799 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:59:05 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 4105 +DestChannel: Local/13@from-queue-00000adc;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489941.10159 +DestLinkedid: 1724489931.10156 +DialStatus: RINGING +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:59:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: DIALEDPEERNAME +Value: PJSIP/13-000011eb + + +11:59:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011eb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: macro-au +Exten: 13 +Priority: 1 +Uniqueid: 1724489941.10165 +Linkedid: 1724489931.10156 +Extension: s +Application: Macro +AppData: auto-blkvm +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Device: PJSIP/13 +State: INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 419 +LastCall: 1724486099 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:59:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011eb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116021080 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: CFIGNORE +Value: +Extension: s +Application: Set +AppData: MASTER_CHANNEL(CFIGNORE)= + + +11:59:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011eb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регист +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724489941.10165 +Linkedid: 1724489931.10156 +Extension: s +Application: Macro +AppData: blkvm-clr, +Variable: MACRO_CONTEXT +Value: macro-auto-blkvm + + +11:59:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011eb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 791160210 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: 1724489941.10165 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +11:59:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011eb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724489941.10165 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +11:59:08 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: MACRO_PRIORITY +Value: +DestChannel: Local/13@from-queue-00000adc;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489941.10159 +DestLinkedid: +DialStatus: ANSWER +Device: Local/13@from-queue +State: INUSE +BridgeUniqueid: f6157290-ed81-4244-899d-2751fd1eb72f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:59:08 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489941.10157 +Linkedid: 1724489931.10156 +DestChannel: Local/12@from-queue-00000adb;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489941.10157 +DestLinkedid: 1724489931.10156 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +11:59:08 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Local/13@from-queue +State: INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: Local/13@from-queue-00000adc;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489941.10159 +DestLinkedid: 1724489931.10156 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 7 +RingTime: 7 +BridgeUniqueid: 9c27c0df-c25d-4c05-92f2-9b1ae5fd4617 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +11:59:08 + +Event: VarSet +Privilege: dialplan,all +Device: Local/10@from-queue +State: NOT_INUSE +BridgeUniqueid: 9c27c0df-c25d-4c05-92f2-9b1ae5fd4617 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791160210 +CallerIDName: 79116021080 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: DIALSTATUS +Value: CANCEL +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +DestChannel: PJSIP/10-000011e9 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724489941.10163 +DestLinkedid: 1724489931.10156 +DialStatus: CANCEL + + +11:59:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: ARG2 +Value: + + +11:59:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +11:59:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000add;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724489941.10163 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +11:59:08 + +Event: DialEnd +Privilege: call,all +AccountCode: +Source: 79116021080 +Destination: 10 +DestinationContext: ext-local +CallerID: "79116021080" <79116021080> +Channel: Local/12@from-queue-00000adb;2 +DestinationChannel: PJSIP/10-000011e9 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724489941.10162 +UserField: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_3 +Language: ru +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489941.10162 +Linkedid: 1724489931.10156 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE + + +11:59:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_PRIORITY +Value: 3 + + +11:59:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 12 +ConnectedLineName: Регистр +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +11:59:08 + +Event: Hangup +Privilege: call,al +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +11:59:08 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 335 +LastCall: 1724489799 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: Local/12@from-queue-00000adb;2 +ActionID: 10182 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724489941.10158 +Linkedid: 1724489931.10156 +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: f6157290-ed81-4244-899d-2751fd1eb72f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Variable: MACRO_DEPTH + + +11:59:08 + +Event: Cdr +Privilege: cdr,all +Channel: Local/12@from-queue-00000adb;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: BRIDGEPVTCALLID +Value: 1300d187-cbad-4200-b154-e2a8d846b9de +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: f6157290-ed81-4244-899d-2751fd1eb72f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Source: 79116021080 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116021080" <79116021080> +DestinationChannel: PJSIP/12-000011ea +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 11 +AnswerTime: +EndTime: 2024-08-24 11 +Duration: 7 + + +11:59:08 + +Event: UserEvent +Privilege: user,all +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/12@FROM-QUEUE +ActionID: 10186 + + +12:01:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:01:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724489941.10159 +Linkedid: 1724489931.10156 +Variable: BRIDGEPEER +Value: +Cause: 16 +DestChannel: Local/13@from-queue-00000adc;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116021080 +DestConnectedLineName: 79116021080 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724489941.10159 +DestLinkedid: 1724489931.10156 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 7 +TalkTime: 117 +Reason: caller + + +12:01:05 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 9c27c0df-c25d-4c05-92f2-9b1ae5fd4617 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724489931.10156 +Linkedid: 1724489931.10156 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +12:01:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011eb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116021080 +ConnectedLineName: 791 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 9c27c0df-c25d-4c05-92f2-9b1ae5fd4617 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing + + +12:01:05 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: f6157290-ed81-4244-899d-2751fd1eb72f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +12:01:05 + +Event: VarSet +Privilege: di +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: ARG2 +Value: + + +12:01:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +12:01:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adc;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:01:05 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/rt_769402-000011e8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000215; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Source: 79116021080 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116021080" <79116021080> +DestinationChannel: Local/12@from-queue-00000adb;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 11 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724489931.10156 +UserField: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +12:01:05 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13-000011eb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489941. +Linkedid: 1724489931.10156 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Source: 79116021080 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116021080" <79116021080> +DestinationChannel: Local/13@from-queue-00000adc;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 12 +Duration: 123 +BillableSeconds: 123 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489931.10156 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10188 +BridgeUniqueid: f6157290-ed81-4244-899d-2751fd1eb72f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:01:05 + +Event: QueueMemberStatus +Privilege: agent,all +BridgeUniqueid: f6157290-ed81-4244-899d-2751fd1eb72f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/13-000011eb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116021080 +ConnectedLineName: 79116021080 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724489941.10165 +Linkedid: 1724489931.10156 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000184; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Device: PJSIP/13 +State: NOT_INUSE +Cause: 16 +Cause-txt: Normal Clearing +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 420 +LastCall: 1724490065 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: + + +12:01:05 + +Event: UserEvent +Privilege: user,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 420 +LastCall: 1724490065 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +AccountCode: +Source: 79116021080 +Destination: 13 +DestinationContext: ext-local +CallerID: "79116021080" <79116021080> +Channel: LOCAL/13@FROM-QUEUE +DestinationChannel: PJSIP/13-000011eb +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 11 +AnswerTime: 2024-08-24 11 +EndTime: 2024-08-24 12 +Duration: 123 +BillableSeconds: 116 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724489941.10160 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10190 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116021080 +CallerIDName: 79116021080 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724489941.10160 +Linkedid: 1724489931.10156 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/13@from-queue +State: NOT_INUSE + + +12:03:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: sub-record-check,s,1(in,79217365096,dontcare) + + +12:03:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __YEA +Value: 08 + + +12:03:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: __MON_FMT +Value: wav + + +12:03:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: FROMEXTEN +Value: 79082954452 + + +12:03:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:03:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 + + +12:03:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megaf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +12:03:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365 +Priority: 12 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __MOHCLASS +Value: + + +12:03:10 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: 79217365096 +Application: Answer +AppData: +Device: PJSIP/Megafon_3 +State: INUSE + + +12:03:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 17 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: NoOp +AppData: + + +12:03:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +12:03:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: 2 +Application: AGI +AppData: agi + + +12:03:12 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +CommandId: 1023220741 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:03:12 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +CommandId: 98814553 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:03:12 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +CommandId: 592043547 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:03:12 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +CommandId: 1747936241 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +12:03:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.101 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +12:03:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-000011ec + + +12:03:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-000011ec + + +12:03:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:03:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: CDR(cnum)=79082954452 +Variable: MACRO_DEPTH +Value: 1 + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79082954452 + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000011ec)=TRUE + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724490190.10 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +12:03:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +12:03:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +12:03:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +12:03:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +12:03:21 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:03:21 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490190.10 +Linkedid: 1724490190.10166 +Variable: QUEUEJOINTIME +Value: 1724490201 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490201.10167 +Linkedid: 1724490190.10166 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490201.10167 +Linkedid: 1724490190.10166 +Variable: __RINGINGSENT +Value: TRUE + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490201.10167 +Linkedid: 1724490190.10166 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: __FROMQUEUEEXTEN +Value: 79082954452 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: __TIMESTR +Value: 20240824-120310 + + +12:03:21 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ade;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724490201.10167 +LocalOneLinkedid: 1724490190.10166 +LocalTwoChannel: Local/12@from-queue-00000ade;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082954452 +LocalTwoCallerIDName: 79082954452 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724490201.10168 +LocalTwoLinkedid: 1724490190.10166 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ade;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: en +DestAccountCode: + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490201.10169 +Linkedid: 1724490190.10166 +DestChannel: Local/12@from-queue-00000ade;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724490201.10167 +DestLinkedid: 1724490190.10166 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490201.10169 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490201.10169 +Linkedid: 1724490190.10166 +Variable: __DIRECTION +Value: + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000011ec + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: __MON_FMT +Value: wav + + +12:03:21 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000adf;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724490201.10169 +LocalOneLinkedid: 1724490190.10166 +LocalTwoChannel: Local/13@from-queue-00000adf;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082954452 +LocalTwoCallerIDName: 79082954452 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724490201.10170 +LocalTwoLinkedid: 1724490190.10166 +LocalOptimization: No + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490201.10171 +Linkedid: 1724490190.10166 +DestChannel: Local/13@from-queue-00000adf;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724490201.10169 +DestLinkedid: 1724490190.10166 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490201.10171 +Linkedid: 1724490190.10166 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490201.10171 +Linkedid: 1724490190.10166 +Variable: __DAY +Value: 24 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +12:03:21 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: __FROM_DID +Value: 79217365096 + + +12:03:21 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000ae0;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724490201.10171 +LocalOneLinkedid: 1724490190.10166 +LocalTwoChannel: Local/10@from-queue-00000ae0;2 + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 3 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +DestChannel: Local/10@from-queue-00000ae0;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724490201.10171 +DestLinkedid: 1724490190.10166 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 10 +Application: GotoIf +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG4 +Value: 0 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724490201.10172 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7908 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: CHANEXTENCONTEXT +Value: 10@from-queue-00000ae0;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000ae0;2 + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000ae0;2 +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 11 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: CALLERID(number)=79082954452 +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: mac +Exten: s +Priority: 53 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: CDR(cnum)=79082954452 +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: RingGroupMethod=none +Variable: MACRO_DEPTH +Value: 1 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +12:03:21 + +Event: New +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: __FROMEXTEN=79082954452 +Variable: MACRO_DEPTH +Value: 1 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: __CALLFILENAME +Value: external-10-79082954452-20240824-120321-1724490201.10172 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79082954452-20240824-120321-1724490201.10172 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000ae0;2 +Variable: MACRO_DEPTH +Value: 1 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: recordcheck +Priority: 25 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: ARG3 +Value: 10 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: DB_RESULT +Value: 10 +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: dstring +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: ctset +Priority: 1 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79082954452 +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724490201.1 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 44 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Extension: s +Application: Dial +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190. +Variable: RINGTIME_MS +Value: + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ed +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490201.10173 +Linkedid: 1724490 +Variable: __FROMQ +Value: true +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ed +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490201.10173 +Linkedid: 1724490190.1016 +Variable: __FROMEXTEN +Value: 79082954452 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ed +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490201.10173 +Linkedid: 1724490190.10166 +Variable: __QC_CONFIRM +Value: 0 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ed +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Реги +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490201.10173 +Linkedid: 1724490190.10166 +Variable: __RINGINGSENT +Value: TRUE + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011ed +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 1 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724490201.10173 +Linkedid: 1724490190.10166 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: QAGENT +Value: 13 +Extension: 13 +Application: Set +AppData: QAGENT=13 + + +12:03:21 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: __FROMQ +Value: true +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +DestChannel: Local/10@from-queue-00000ae0;1 +DestChannelState: 5 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724490201.10173 +DestLinkedid: 1724490190.10166 +DialString: 10/sip +Device: Local/10@from-queue +State: INUSE + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 2 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: ARG5 +Value: 0 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724490201.10168 +Variable: TOUCH_MONITOR +Value: 1724490201.10168 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000ade;2 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000ade;2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000ade;2 +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: CALLERID(number)=79082954452 +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 +Variable: DB_RESULT +Value: 0 + + +12:03:21 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG1 +Value: novm + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +12:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724490201.1017 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: CDR(cnam)=79082954452 +Variable: MACRO_DEPTH +Value: 2 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: e + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1 +Linkedid: 1724490190.10166 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: __TIMESTR +Value: 20240824-120321 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-120321 + + +12:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: LOCAL(ARG3) +Value: 12 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: su +Exten: recordcheck +Priority: 10 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=7 + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79082954452-20240824-120321-1724490201.10168.wav,abi(), + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79082954452-20240824-120321-1724490201.10168.wav + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: 1 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=12) + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=2) + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: +Value: PJSIP/12 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MA +Value: HhTtrM(auto-blkvm) + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:03:22 + +Event: VarSet +Privilege: di +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.1016 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-ho +Exten: s +Priority: 1 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: DIALEDTIME +Value: + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Variable: __REC_STATUS +Value: RECORDING + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Variable: __DAY +Value: 24 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Variable: __ +Value: 0 + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +12:03:22 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000adf;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79082954452 +ConnectedLineName: 7908 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724490201.10169 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79082954452-20240824 + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000adf;2 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-che +Exten: recordcheck +Priority: 25 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: exten +Priority: 12 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 13 +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: dstring +Priority: 14 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-o +Exten: ctset +Priority: 2 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724490 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +12:03:22 + +Event: DialBegin +Privilege: call,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: PROGRESSTIME_MS +Value: +DestChannel: + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ef +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490201.10175 +Linkedid: 1724490190.10166 +Device: Local/12@from-queue +State: INUSE +DestChannel: Local/12@from-queue-00000ade;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724490201.10167 +DestLinkedid: 1724490190.10166 +DialStatus: RINGING +Variable: __REC_STATUS +Value: RECORDING + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ef +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490201.10175 +Linkedid: 1724490190.10166 +Variable: __DAY +Value: 24 + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ef +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: fr +Exten: s +Priority: 1 +Uniqueid: 1724490201.10175 +Linkedid: 1724490190.10166 +Variable: __QCONTEXT +Value: 0 + + +12:03:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011ef +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: +Uniqueid: 1724490201.10175 +Linkedid: 1724490190.10166 +Variable: __DIRECTION +Value: + + +12:03:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011ef +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724490201.10175 +Linkedid: 1724490190.10166 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +12:03:22 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/13@from-queue-00000adf;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724490201.10175 +DestLinkedid: 1724490190.10166 +DialString: 13/sip +Device: Local/13@from-queue +State: INUSE + + +12:03:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011ed +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724490201.10173 +Linkedid: 1724490190.10166 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +12:03:24 + +Event: DialState +Privilege: call,all +Device: PJSIP/10 +State: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: RINGTIME_MS +Value: 3229 +DestChannel: Local/10@from-queue-00000ae0;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724490201.10171 +DestLinkedid: 1724490190.10166 +DialStatus: RINGING + + +12:03:24 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-000011ef +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724490201.10175 +Linkedid: 1724490190.10166 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 420 +LastCall: 1724490065 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:03:24 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: RINGTIME_MS +Value: 3503 +DestChannel: Local/13@from-queue-00000adf;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724490201.10169 +DestLinkedid: 1724490190.10166 +DialStatus: RINGING + + +12:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +12:03:25 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 53 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: RINGTIME_MS +Value: 4201 +DestChannel: Local/12@from-queue-00000ade;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724490201.10167 +DestLinkedid: 1724490190.10166 +DialStatus: RINGING +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 335 +LastCall: 1724489799 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:03:41 + +Event: DeviceSta +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +12:03:41 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 335 +LastCall: 1724489799 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 790829 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +12:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +12:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000011ec)= + + +12:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=12/sip + + +12:03:41 + +Event: Newstate +Privilege: call,all +Channel: Local/12@from-queue-00000ade;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +DestChannel: PJSIP/12-000011ee +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724490201.10174 +DestLinkedid: 1724490190.10166 +DialStatus: ANSWER +BridgeUniqueid: 5b920108-c594-4864-ae60-281c761f92ab +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:03:41 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000adf;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 17 +DestLinkedid: 1724490190.10166 +DialStatus: CANCEL + + +12:03:41 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000ae0;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724490201.10171 +Linkedid: 1724490190.10166 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Pres +DestChannel: PJSIP/13-000011ef +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724490201.10175 +DestLinkedid: 1724490190.10166 +DialStatus: CANCEL + + +12:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: QUEUEPOSITION +Value: 1 +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 + + +12:03:41 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 79082954452 +Destination: 13 +DestinationContext: ext-local +CallerID: "79082954452" <79082954452> +Channel: Local/13@from-queue-00000adf;2 +DestinationChannel: PJSIP/13-000011ef +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 19 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724490201.10170 +UserField: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +DestChannel: Local/12@from-queue-00000ade;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724490201.10167 +DestLinkedid: 1724490190.10166 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 20 +RingTime: 19 +Variable: ARG5 +Value: + + +12:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +BridgeUniqueid: 008dd14e-d697-4614-98d2-2caa641d11f3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: h +Application: Macro +AppData: hangupcall, + + +12:03:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724490201.10175 +Linkedid: 1724490190.10166 +Variable: DIALSTATUS +Value: CANCEL +Extension: s +Application: GotoIf +AppData: 1?theend +Device: Local/10@from-queue +State: NOT_INUSE +DestChannel: PJSIP/10-000011ed +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082954452 +DestConnectedLineName: 79082954452 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724490201.10173 +DestLinkedid: 1724490190.10166 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere + + +12:03:41 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 5b920108-c594-4864-ae60-281c761f92ab +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_PRIOR +Value: ext-local +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE + + +12:03:41 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: NOT_INUSE +Channel: Local/10@from-queue-00000ae0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 420 +LastCall: 1724490065 +LastPause: 0 +LoginTime: 1724013099 + + +12:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_PRIORITY +Value: 1 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:03:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000adf;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490201.10170 +Linkedid: 1724490190.10166 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: + + +12:03:41 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/12@from-queue-00000ade;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 55 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x29377018 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490221.046785 +SentRTP: 239087 +SentPackets: 1474 +SentOctets: 235687 +Report0SourceSSRC: 0x000201dc +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 2570 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 262147014 +Report0DLSR: 3.0420 +BridgeUniqueid: 008dd14e-d697-4614-98d2-2caa641d11f3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID +Value: 31321070-f8dc-4a14-9176-5d128f525008 + + +12:03:41 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 008dd14e-d697-4614-98d2-2caa641d11f3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10195 + + +12:03:41 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724490201.10172 +Linkedid: 1724490190.10166 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79082954452 +Destination: 10 +DestinationContext: ext-local +CallerID: "79082954452" <79082954452> +DestinationChannel: PJSIP/10-000011ed +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 19 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724490201.10172 +UserField: +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10196 + + +12:03:46 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x286d458c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490226.048911 +SentRTP: 13438480 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0xad2b19b8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 19928 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 10 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:03:51 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x286d458c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490231.049235 +SentRTP: 13478640 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xad2b19b8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 20178 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 10 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:04:46 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x286d458c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490286.050373 +SentRTP: 13918640 +SentPackets: 3251 +SentOctets: 520160 +Report0SourceSSRC: 0xad2b19b8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 22928 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:05:11 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x286d458c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490311.048665 +SentRTP: 14118480 +SentPackets: 4500 +SentOctets: 720000 +Report0SourceSSRC: 0xad2b19b8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 24178 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 11 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:05:21 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x286d458c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490321.050324 +SentRTP: 14198480 +SentPackets: 5000 +SentOctets: 800000 +Report0SourceSSRC: 0xad2b19b8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 24678 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 10 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:05:31 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x286d458c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490331.051362 +SentRTP: 14278480 +SentPackets: 5500 +SentOctets: 880000 +Report0SourceSSRC: 0xad2b19b8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25178 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 10 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:05:46 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x286d458c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490346.051935 +SentRTP: 14398480 +SentPackets: 6250 +SentOctets: 1000000 +Report0SourceSSRC: 0xad2b19b8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25928 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:05:56 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x286d458c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490356.049533 +SentRTP: 14478480 +SentPackets: 6750 +SentOctets: 1080000 +Report0SourceSSRC: 0xad2b19b8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 26428 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 10 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:06:26 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/12-000011ee +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x286d458c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490386.048864 +SentRTP: 14718480 +SentPackets: 8250 +SentOctets: 1320000 +Report0SourceSSRC: 0xad2b19b8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27928 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:06:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: RTPAUDIOQOSBRIDGED +Value: ssrc=678249868;themssrc=2905283000;lp=0;rxjitter=0.000000;rxcount=8379;txjitter=0.001250;txcount=8405;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +12:06:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490201.10174 +Linkedid: 1724490190.10166 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000123; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:06:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 55 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: ANSWEREDTIME +Value: 168 +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +BridgeUniqueid: 5b920108-c594-4864-ae60-281c761f92ab +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:06:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: ARG2 +Value: 12 +BridgeUniqueid: 5b920108-c594-4864-ae60-281c761f92ab +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:06:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-que +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: ARG1 +Value: + + +12:06:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Cause-txt: Normal Clearing +Extension: h +Application: Macro +AppData: hangupcall, + + +12:06:29 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/12 +State: NOT_INUSE +Channel: Local/12@from-queue-00000ade;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724490201.10168 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 335 +LastCall: 1724489799 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:06:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954452 +ConnectedLineName: 79082954452 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724490201.10167 +Linkedid: 1724490190.10166 +Extension: s +Application: Hangup +AppData: +Variable: BRIDGEPEER +Value: +Cause: 16 + + +12:06:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 008dd14e-d697-4614-98d2-2caa641d11f3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 20 +TalkTime: 168 +Reason: agent +Extension: h +Application: Macro +AppData: hangupcall, + + +12:06:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: MACRO_DEPTH +Value: 1 +Source: 79082954452 +Destination: 12 +DestinationContext: ext-local +CallerID: "79082954452" <79082954452> +DestinationChannel: PJSIP/12-000011ee +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 187 +BillableSeconds: 168 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724490201.10168 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10197 +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:06:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOS +Value: ssrc=691499032;themssrc=131548;lp=0;rxjitter=0.001250;rxcount=9903;txjitter=0.000125;txcount=9853;rlp=0;rtt=0.000000;rxmes=85.36703 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE + + +12:06:29 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-000011ec +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954452 +CallerIDName: 79082954452 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724490190.10166 +Linkedid: 1724490190.10166 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10200 +Source: 79082954452 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082954452" <79082954452> +DestinationChannel: Local/13@from-queue-00000adf;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 198 +BillableSeconds: 198 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724490190.10166 +UserField: + + +12:06:29 + +Event: Cdr +Privilege: cdr,all +AccountCode: +Source: 79082954452 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082954452" <79082954452> +Channel: PJSIP/Megafon_3-000011ec +DestinationChannel: Local/10@from-queue-00000ae0;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 19 +BillableSeconds: 19 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724490190.10166 +UserField: + + +12:09:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:09:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724490581.10176 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:09:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724490581. +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-120941 +Variable: __YEAR +Value: 2024 + + +12:09:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:09:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +12:09:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:09:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +12:09:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +12:09:41 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE +Device: PJSIP/Megafon_3 +State: INUSE + + +12:09:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 14 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:09:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:09:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +12:09:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 2 +Application: AGI +AppData: agi + + +12:09:42 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +CommandId: 1119717750 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:09:42 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +CommandId: 986317372 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:09:43 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +CommandId: 1433216233 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +12:09:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 2 +Application: Set +AppData: DEVICE_STATE(Custom +Variable: DB_RESULT +Value: + + +12:09:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 194 +Application: Macro +AppData: user-callerid, +Variable: MACRO_DEPTH +Value: 1 + + +12:09:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-000011f0 + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724490581.10176 +Linkedid: 1 +Variable: AMPUSER +Value: 79116141092 +Extension: s +Application: Set +AppData: AMPUSER=79116141092 + + +12:09:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7911614109 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:09:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7911 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +12:09:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7911614109 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +12:09:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: e +Exten: 194 +Priority: 23 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +12:09:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: s +Application: GotoIf +AppData: 11?initialized +Variable: LOCAL(ARGC) +Value: 3 + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:09:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:09:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 1 +Priority: 32 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +12:09:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +12:09:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +12:09:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724490591 +Variable: QUEUEJOINTIME +Value: + + +12:09:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490591.10177 +Linkedid: 1724490581.10176 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490591.10177 +Linkedid: 1724490581.10176 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490591.10177 +Linkedid: 1724490581.10176 +Variable: __REC_STATUS +Value: INITIALIZED + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: __FROM_DID +Value: 79217365096 + + +12:09:52 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ae1;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724490591.10177 +LocalOneLinkedid: 1724490581.10176 +LocalTwoChannel: Local/12@from-queue-00000ae1;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116141092 +LocalTwoCallerIDName: 79116141092 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490591.10179 +Linkedid: 1724490581.10176 +DestChannel: Local/12@from-queue-00000ae1;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724490591.10177 +DestLinkedid: 1724490581.10176 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QC_CONFIRM +Value: 0 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490591.10179 +Linkedid: 1724490581.10176 +Variable: __CALLEE_ACCOUNCODE +Value: + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490591.10179 +Linkedid: 1724490581.10176 +Variable: __DAY +Value: 08 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: __NODEST +Value: 194 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: __MOHCLASS +Value: + + +12:09:52 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000ae2;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: < + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490591.10181 +Linkedid: 1724490581.10176 +DestChannel: Local/13@from-queue-00000ae2;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724490591.10179 +DestLinkedid: 1724490581.10176 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490591.10181 +Linkedid: 1724490581.10176 +Variable: __TTL +Value: 64 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490591.10181 +Linkedid: 1724490581.10176 +Variable: __YEAR +Value: 2024 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: __RVOL_MODE +Value: dontcare + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490591.10182 +Linkedid: 172449058 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:09:52 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +LocalOneChannel: Local/10@from-queue-00000ae3;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724490591.10181 +LocalOneLinkedid: 1724490581.10176 +LocalTwoChannel: Local/10@from-queue-00000ae3;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116141092 +LocalTwoCallerIDName: 79116141092 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724490591.10182 +LocalTwoLinkedid: 1724490581.10176 +Context: from-queue +Exten: 10 +LocalOptimization: No +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Priority: 2 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +DestChannel: Local/10@from-queue-00000ae3;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724490591.10181 +DestLinkedid: 1724490581.10176 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 10 +Application: Set +AppData: QAGENT=10 +Variable: QAGENT +Value: 10 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext +Exten: 10 +Priority: 1 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: DB_RESULT +Value: 0 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: ARG2 +Value: 10 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724 +Linkedid: 1724490581.10176 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: V +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: AMPUSER +Value: 79116141092 +Extension: s +Application: Set +AppData: AMPUSER=79116141092 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 10 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: HOTDESKCALL +Value: 0 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: m +Exten: s +Priority: 52 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: CDR(cnam)=79116141092 +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FR + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79116141092 and 10 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 11 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: LOCAL(ARGC) +Value: 3 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79116141092) + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79116141092-20240824-120951-1724490591.10182.wav +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: DSTRING +Value: +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 7911 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip +Variable: THISDIAL +Value: PJSIP/10/sip + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 17244905 +Linkedid: 1724490581.10176 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial +Exten: s +Priority: 30 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 172449059 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: 12 +Application: Set +AppData: QAGENT=12 +Variable: QAGENT +Value: 12 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: DB_RESULT +Value: 2 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: RINGTIME_MS +Value: + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-inte +Exten: s +Priority: 1 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000ae3;2 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581 +Variable: __PICKUPMARK +Value: 10 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000011f0 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Variable: __DIRECTION +Value: +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_EXTEN +Value: 60 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ae + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000ae1;2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79116141092 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 2 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: 13 +Application: Set +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 17244905 +Linkedid: 1724490581.10176 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG3 +Value: 0 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 7911614 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000ae2;2 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79116141092 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: from-qu +Exten: s +Priority: 54 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 17244905 +Linkedid: 1724490581.10176 +Variable: MACRO_PRIORITY +Value: 3 +DestChannel: PJSIP/10-000011f1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116141092 +DestConnectedLineName: 79116141092 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724490591.10183 +DestLinkedid: 1724490581.10176 +DialString: 10/sip + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 +Variable: __PICKUPMARK +Value: 12 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +DestChannel: Local/10@from-queue-00000ae3;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116141092 +DestConnectedLineName: 79116141092 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724490591.10181 +DestLinkedid: 1724490581.10176 +DialStatus: RINGING +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) +Variable: LOCAL(ARG2) +Value: 12 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: NOW +Value: 1724490591 +Extension: s +Application: Set +AppData: NOW=1724490591 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-che +Exten: s +Priority: 6 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 791161410 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911614109 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) +Variable: LOCAL(ARG1) +Value: yes + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116141092) +Variable: RECFROMEXTEN +Value: 79116141092 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79116141092-20240824-120951-1724490591.10178.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-12-79116141092-20240824-120951-1724490591.10178.wav + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: recordcheck +Application: Return +AppData: +Device: Local/10@from-queue +State: INUSE +Variable: GOSUB_RETVAL +Value: + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 +Variable: MACRO_EXTEN +Value: s + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: DB_RESULT +Value: PJSIP/12 +Extension: +Application: Set +AppData: ITER=1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Return +AppData: + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:09:52 + +Event: Va +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724490591.10178 +Linkedid: 1724490 +Extension: s +Application: GotoIf +AppData: 1?godial +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-ho +Exten: s +Priority: 1 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: ANSWEREDTIME +Value: + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79116141092 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: Ri +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724490591.10180 +Linkedid: 172449058 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: __FROMEXTEN +Value: 79116141092 +Extension: s +Application: Set +AppData: __FROMEXTEN=79116141092 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: +Linkedid: 1724490581.10176 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79116141092 and 13 +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +12:09:52 + +Event: VarSet +Privilege: dial +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordch +Priority: 19 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79116141092-20240824-120952-1724490591.10180 +Variable: MACRO_DEPTH +Value: 1 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724490591.10180 +Linkedid: 17244905 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000011f2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490592.10184 +Linkedid: 1724490581.10176 +Variable: __KEEPCID +Value: TRUE +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79116141092-20240824-120952-1724490591.10180.wav + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724490592.10184 +Linkedid: 1724490581.10176 +Variable: __RINGINGSENT +Value: TRUE + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: ARG1 +Value: +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000011f2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: exten +Priority: 12 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/12-000011f2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: DB_RESULT +Value: 13 +Extension: dstri +Application: Set +AppData: DSTRING= + + +12:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +12:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: dstring +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +12:09:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79116141092 +Variable: MACRO_DEPTH +Value: 2 + + +12:09:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:09:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +12:09:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:09:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +12:09:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:09:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +12:09:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) +Variable: MACRO_DEPTH +Value: 2 + + +12:09:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: RINGTIME_MS +Value: + + +12:09:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011f3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490592.10185 +Linkedid: 1724490581.10176 +Variable: __REC +Value: external-13-79116141092-20240824-120952-1724490591.10180 + + +12:09:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011f3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490592.10185 +Linkedid: 1724490581.10176 +Variable: __CALLEE_ACCOUNCODE +Value: + + +12:09:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000011f3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724490592.10185 +Linkedid: 1724490581.10176 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +12:09:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000011f3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724490592.10185 +Linkedid: 1724490581.10176 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/13-000011f3 + + +12:09:53 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +DestChannel: Local/13@from-queue-00000ae2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116141092 +DestConnectedLineName: 79116141092 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724490591.10179 +DestLinkedid: 1724490581.10176 +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE + + +12:09:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +12:09:54 + +Event: DialState +Privilege: call,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +DestChannel: PJSIP/10-000011f1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116141092 +DestConnectedLineName: 79116141092 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724490591.10183 +DestLinkedid: 1724490581.10176 +DialStatus: RINGING +Variable: RINGTIME_MS +Value: 2987 + + +12:09:55 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3558 +Device: PJSIP/12 +State: RINGING +DestChannel: Local/12@from-queue-00000ae1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116141092 +DestConnectedLineName: 79116141092 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724490591.10177 +DestLinkedid: 1724490581.10176 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:09:56 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 4227 +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +DestChannel: PJSIP/13-000011f3 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116141092 +DestConnectedLineName: 79116141092 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724490592.10185 +DestLinkedid: 1724490581.10176 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 420 +LastCall: 1724490065 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:09:57 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/10-000011f1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Variable: MACRO_PRIORITY +Value: 1 +Device: PJSIP/10 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 304 +LastCall: 1724489344 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:09:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 791161 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Variable: CFIGNORE +Value: +Extension: s +Application: Set +AppData: CFIGNORE= + + +12:09:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +12:09:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000011f0)= + + +12:09:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +12:09:57 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000ae3;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724490591.10181 +Linkedid: 1724490581.10176 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-000011f1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116141092 +DestConnectedLineName: 79116141092 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724490591.10183 +DestLinkedid: 1724490581.10176 +DialStatus: ANSWER +BridgeUniqueid: 19fb2390-1aea-4b6f-b84b-1d734bdc9da4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:09:57 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: cbf6d1e1-a21a-4ccf-a86e-6026195ac9a9 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +DestChannel: PJSIP/12-000011f2 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116141092 +DestConnectedLineName: 79116141092 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724490592.10184 +DestLinkedid: 1724490581.10176 +DialStatus: CANCEL +Variable: ARG3 +Value: 0 + + +12:09:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_EXTEN +Value: + + +12:09:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:09:57 + +Event: VarSet +Privilege: di +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: ARG2 +Value: 13 +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Cause: 26 +Cause-txt: Answered elsewhere +DestChannel: PJSIP/13-000011f3 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116141092 +DestConnectedLineName: 79116141092 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724490592.10185 +DestLinkedid: 1724490581.10176 +DialStatus: CANCEL + + +12:09:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.1018 +Linkedid: 1724490581.10176 +Variable: ARG4 +Value: +Device: PJSIP/12 +State: NOT_INUSE + + +12:09:57 + +Event: VarSet +Privilege: dialplan,all +Device: Local/13@from-queue +State: NOT_INUSE +Channel: Local/13@from-queue-00000ae2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_CONTEXT +Value: ext-lo +Cause: 16 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +12:09:57 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-000011f3 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724490592.10185 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 1 +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 420 +LastCall: 1724490065 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Hint: PJSIP/13&Custom +StatusText: Idle +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE + + +12:09:57 + +Event: BridgeEnter +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 420 +LastCall: 1724490065 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: cbf6d1e1-a21a-4ccf-a86e-6026195ac9a9 +BridgeType: basic +BridgeTechnology: simple_bri +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000ae1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724490591.10178 +Linkedid: 1724490581.10176 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere + + +12:09:57 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/10-000011f1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Variable: BRIDGEPEER +Value: 1 +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10202 +Source: 79116141092 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116141092" <79116141092> +DestinationChannel: PJSIP/12-000011f2 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724490591.10178 +UserField: +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 19fb2390-1aea-4b6f-b84b-1d734bdc9da4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:09:57 + +Event: Use +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724490591.10180 +Linkedid: 1724490581.10176 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10205 +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79116141092 +Destination: 13 +DestinationContext: ext-local +CallerID: "79116141092" <79116141092> +DestinationChannel: PJSIP/13-000011f3 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724490591.10180 +UserField: +Device: Local/13@from-queue +State: NOT_INUSE + + +12:09:57 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 19fb2390-1aea-4b6f-b84b-1d734bdc9da4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: BRIDGEPVTCALLID +Value: 7df09ce6-5c8f-4ec1-8e12-f52767baf8f9 + + +12:10:17 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:10:17 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: +Priority: 53 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: cbf6d1e1-a21a-4ccf-a86e-6026195ac9a9 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:10:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext +Exten: h +Priority: 1 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +12:10:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: cbf6d1e1-a21a-4ccf-a86e-6026195ac9a9 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Source: 79116141092 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116141092" <79116141092> +DestinationChannel: Local/12@from-queue-00000ae1;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724490581.10176 +UserField: + + +12:10:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490581.10176 +Linkedid: 1724490581.10176 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; + + +12:10:18 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: BRIDGEPEER +Value: +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10208 +Device: Local/10@from-queue +State: NOT_INUSE +Source: 79116141092 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116141092" <79116141092> +DestinationChannel: Local/13@from-queue-00000ae2;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 5 +BillableSeconds: 5 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724490581.10176 +UserField: +BridgeUniqueid: 19fb2390-1aea-4b6f-b84b-1d734bdc9da4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:10:18 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_EXTEN +Value: 10 + + +12:10:18 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_CONTEXT +Value: + + +12:10:18 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-000011f0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 +Source: 79116141092 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116141092" <79116141092> +DestinationChannel: Loc + + +12:10:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116141092 +ConnectedLineName: 79116141092 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724490591.10183 +Linkedid: 1724490581.10176 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; +BridgeUniqueid: 19fb2390-1aea-4b6f-b84b-1d734bdc9da4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +12:10:18 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_DEPTH +Value: 0 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10209 + + +12:10:18 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116141092 +CallerIDName: 79116141092 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724490591.10182 +Linkedid: 1724490581.10176 +Variable: MACRO_PRIORITY +Value: 1 +Source: 79116141092 +Destination: 10 +DestinationContext: ext-local +CallerID: "79116141092" <79116141092> +DestinationChannel: PJSIP/10-000011f1 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 25 +BillableSeconds: 20 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724490591.10182 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10210 + + +12:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116381957 +Priority: 1 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: 989116381957 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, +Variable: ARG3 +Value: + + +12:11:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724490675.10186 +Linkedid: 1724490 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +12:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: AMPUSER +Value: 10 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:11:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +12:11:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=10) + + +12:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: Set +AppData: AMPUSERCID=10 +Variable: AMPUSERCID +Value: 10 + + +12:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) +Variable: MACRO_DEPTH +Value: 1 + + +12:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:11:15 + +Event: VarSet +Privilege: +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:11:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: Set +AppData: CDR(cnum)=10 +Variable: MACRO_DEPTH +Value: 1 + + +12:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116381957 +Priority: 2 +Uniqueid: 1724490675.10 +Linkedid: 1724490675.10186 +Variable: LOCAL(ARG2) +Value: 989116381957 +Extension: 989116381957 +Application: Gosub +AppData: sub-record-check,s,1(out,989116381957,dontcare) + + +12:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __MONTH=08 + + +12:11:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: s +Priority: 10 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: NoOp +AppData: Recordings initialized +Variable: __MON_FMT +Value: wav + + +12:11:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 2 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: out +Application: Set +AppData: RECMODE=yes +Variable: RECMODE +Value: yes + + +12:11:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: recor +Application: Goto +AppData: yes +Variable: LOCAL(ARGC) +Value: 3 + + +12:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116381957-10-20240824-121115-1724490675.10186 +Variable: __CALLFILENAME +Value: out-989116381957-10-20240824-121115-1724490675.10 + + +12:11:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +12:11:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: out +Application: Return +AppData: +Variable: ARG3 +Value: + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116381957 +Priority: 6 +Uniqueid: 1724490675.10186 +Linkedid: 172449 +Variable: _ROUTENAME +Value: Megafon +Extension: 989116381957 +Application: Set +AppData: MOHCLASS=default + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116381957 +Priority: 11 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: 989116381957 +Application: Macro +AppData: dialout-trunk,6,+79116381957,,off +Variable: _NODEST +Value: + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:11:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: ARG1 +Value: 6 +Extension: s +Application: Macro +AppData: outbound-callerid,6 + + +12:11:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: ExecIf +AppData: 0? +Variable: MACRO_DEPTH +Value: 2 + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 17244906 +Linkedid: 1724490675.10186 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:11:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 12 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: ExecIf +AppData: 0?Set(ALLOWTHISROUTE=YES) +Variable: MACRO_DEPTH +Value: 2 + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратур +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?normcid + + +12:11:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: Set +AppData: TRUNKOUTCID=7816 +Variable: MACRO_DEPTH +Value: 2 + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: Set +AppData: TIOHIDE=no +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TIOHIDE +Value: no + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 +Variable: MACRO_DEPTH +Value: 2 + + +12:11:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 14 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() +Variable: MACRO_DEPTH +Value: 1 + + +12:11:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 18 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +12:11:16 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116381957) + + +12:11:16 + +Event: VarSet +Privilege: d +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:11:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HASH(__SIPHEADERS,Alert-Info)=unset + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: RINGTIME_MS +Value: + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490675.10187 +Linkedid: 1724490675.10186 +Variable: ROUTEID +Value: 1 + + +12:11:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490675.10187 +Linkedid: 1724490675.10186 +Variable: __MONTH +Value: 08 + + +12:11:16 + +Event: Newexten +Privilege: +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724490675.10187 +Linkedid: 1724490675.10186 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:11:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: +Priority: 5 +Uniqueid: 1724490675.10187 +Linkedid: 1724490675.10186 +Variable: sipheader +Value: unset +Extension: s +Application: Set +AppData: sipheader=unset + + +12:11:16 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724490675.10187 +Linkedid: 1724490675.10186 +Extension: s +Application: EndWhile +AppData: +Variable: sipkey +Value: + + +12:11:16 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011f5 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116381957 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724490675.10187 +DestLinkedid: 1724490675.10186 +DialString: +79116381957@rt_769402 + + +12:11:16 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724490675.10187 +Linkedid: 1724490675.10186 +Extension: 989116381957 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse + + +12:11:16 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: INUSE +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: RINGTIME_MS +Value: 382 +DestChannel: PJSIP/rt_769402-000011f5 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116381957 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116381957 +DestPriority: 1 +DestUniqueid: 1724490675.10187 +DestLinkedid: 1724490675.10186 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:11:18 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011f4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: PROGRESSTIME_MS +Value: 2157 +DestChannel: PJSIP/rt_769402-000011f5 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116381957 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116381957 +DestPriority: 1 +DestUniqueid: 1724490675.10187 +DestLinkedid: 1724490675.10186 +DialStatus: PROGRESS + + +12:11:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116381957 +Priority: 1 +Uniqueid: 1724490675.10187 +Linkedid: 1724490675.10186 +Variable: LOCAL(AR +Value: + + +12:11:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 172449067 +Linkedid: 1724490675.10186 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:11:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490675.10187 +Linkedid: 1724490675.10186 +Variable: BRIDGEPEER +Value: PJSIP/10-000011f4 +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-000011f5 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116381957 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724490675.10187 +DestLinkedid: 1724490675.10186 +DialStatus: ANSWER +BridgeUniqueid: 673906ff-040d-4074-a17a-4408df488a6f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:11:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: BRIDGEPVTCALLID +Value: 51374a79-57d5-4414-a220-de97e8fd420f + + +12:11:23 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490675.10187 +Linkedid: 1724490675.10186 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x602ce275 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490683.266312 +SentRTP: 1724530672 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x1ff65e85 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 22749 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:11:23 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011f4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 673906ff-040d-4074-a17a-4408df488a6f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_EXTEN +Value: + + +12:11:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116381957 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490675.10187 +Linkedid: 1724490675.10186 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; st +BridgeUniqueid: 673906ff-040d-4074-a17a-4408df488a6f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:11:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Value: ssrc=491695569;themssrc=2833270056;lp=0;rxjitter=0.000000;rxcount=277;txjitter=0.001250;txcount=280;rlp=0;rtt=0.00 +Family: refreshcallhistory +ActionID: 10211 +Variable: RTPAUDIOQOS + + +12:11:23 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011f4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116381957 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724490675.10186 +Linkedid: 1724490675.10186 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000195; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Source: 78162769402 +Destination: 989116381957 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011f5 +LastApplication: Dial +LastData: PJSIP/+79116381957@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 8 +BillableSeconds: 4 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724490675.10186 +UserField: +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:11:23 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10212 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: 989116300338 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, +Variable: MACRO_DEPTH +Value: 1 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 4 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011f6 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:11:45 + +Event: VarSet +Privilege: dia +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:11:45 + +Event: Va +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: M +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 1 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-interna +Exten: 989116300338 +Priority: 2 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116300338 +Application: Gosub +AppData: sub-record-check,s,1(out,989116300338,dontcare) + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:11:45 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordch +Priority: 9 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: __CALLFILENAME +Value: out-989116300338-10-20240824-121145-1724490705.10188 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116300338-10-20240824-121145-1724490705.10188 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recording + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: out +Application: Return +AppData: +Variable: ARG2 +Value: + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116300338 +Priority: 6 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MOHCLASS +Value: default +Extension: 989116300338 +Application: Set +AppData: MOHCLASS=default + + +12:11:45 + +Event: VarSet +Privilege: dia +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116300338 +Priority: 11 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_EXTEN +Value: 989116300338 +Extension: 989116300338 +Application: Macro +AppData: dialout-trunk,6,+79116300338,,off + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: s +Application: GotoIf +AppData: 0?nomax +Variable: MACRO_DEPTH +Value: 1 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 6 +Extension: s +Application: Macro +AppData: outbound-callerid,6 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1 +Linkedid: 1724490705.10188 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) +Variable: MACRO_DEPTH +Value: 2 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbou +Exten: s +Priority: 8 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: s +Application: Set +AppData: OUTNUM=+79116300338 +Variable: MACRO_DEPTH +Value: 1 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116300338 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116300338) + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: DB +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Dial +AppData: PJSIP/+79116300338@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116300338^989116300338^6^1724490705^^78162769402) + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116300338 +ConnectedLineName: C +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: PROGRESSTIME +Value: + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10 +Variable: ROUTEID +Value: 1 + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +Variable: __DAY +Value: 24 + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:11:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 7816276 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:11:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func- +Exten: s +Priority: 4 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:11:45 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011f7 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116300338 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724490705.10189 +DestLinkedid: 1724490705.10188 +DialString: +79116300338@rt_769402 + + +12:11:45 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Extension: 989116300338 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Variable: RINGTIME_MS +Value: 378 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: PJSIP/rt_769402-000011f7 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116300338 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116300338 +DestPriority: 1 +DestUniqueid: 1724490705.10189 +DestLinkedid: 1724490705.10188 +DialStatus: RINGING + + +12:11:48 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011f6 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: PROGRESSTIME_MS +Value: 2801 +DestChannel: PJSIP/rt_769402-000011f7 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116300338 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116300338 +DestPriority: 1 +DestUniqueid: 1724490705.10189 +DestLinkedid: 1724490705.10188 +DialStatus: PROGRESS + + +12:11:53 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1d3073c2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490713.501490 +SentRTP: 1724530704 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xa9762ac6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 53227 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:11:58 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1d3073c2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490718.501796 +SentRTP: 1724570704 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xa9762ac6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 53477 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:12:03 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1d3073c2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490723.503710 +SentRTP: 1724610704 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0xa9762ac6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 53727 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:12:08 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1d3073c2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490728.502341 +SentRTP: 1724650544 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0xa9762ac6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 53977 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:12:13 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1d3073c2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490733.501512 +SentRTP: 1724690544 +SentPackets: 1250 +SentOctets: 200000 +Report0SourceSSRC: 0xa9762ac6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 54227 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:12:13 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/rt_769402 +State: INUSE +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116300338 +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +Variable: LOCAL(ARG5) +Value: + + +12:12:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:12:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +Variable: BRIDGEPEER +Value: PJSIP/10-000011f6 +DestChannel: PJSIP/rt_769402-000011f7 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116300338 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724490705.10189 +DestLinkedid: 1724490705.10188 +DialStatus: ANSWER +BridgeUniqueid: 5dca72fd-ef4e-4f2b-8f3c-b08ffdfa4a24 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:12:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: BRIDGEPVTCALLID +Value: 3056d5e1-d424-4192-8e89-ad4e63123d96 + + +12:12:18 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1d3073c2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490738.502153 +SentRTP: 1724730704 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0xa9762ac6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 54477 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:12:23 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1d3073c2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490743.501837 +SentRTP: 1724770704 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0xa9762ac6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 54727 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:12:33 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1d3073c2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490753.501788 +SentRTP: 1724850544 +SentPackets: 2250 +SentOctets: 360000 +Report0SourceSSRC: 0xa9762ac6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 55227 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:12:38 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1d3073c2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490758.501478 +SentRTP: 1724890544 +SentPackets: 2500 +SentOctets: 400000 +Report0SourceSSRC: 0xa9762ac6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 55477 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:12:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:12:39 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011f6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 5dca72fd-ef4e-4f2b-8f3c-b08ffdfa4a24 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:12:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_EXTEN +Value: + + +12:12:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:12:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: RTPAUDIOQOS +Value: ssrc=1972930152;themssrc=3277625965;lp=0;rxjitter=0.000000;rxcount=2524;txjitter=0.000875;txcount=2528;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Extension: s +Application: Hangup +AppData: + + +12:12:39 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10-000011f6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116300338 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724490705.10188 +Linkedid: 1724490705.10188 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000173; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Source: 78162769402 +Destination: 989116300338 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011f7 +LastApplication: Dial +LastData: PJSIP/+79116300338@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 53 +BillableSeconds: 25 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724490705.10188 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:12:39 + +Event: Hangup +Privilege: call,all +BridgeUniqueid: 5dca72fd-ef4e-4f2b-8f3c-b08ffdfa4a24 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-000011f7 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116300338 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490705.10189 +Linkedid: 1724490705.10188 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000230; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 + + +12:12:39 + +Event: UserEvent +Privilege: user,all +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/RT_769402 +ActionID: 10214 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724490771.1 +Linkedid: 1724490771.10190 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011f8 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724490771.10190 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:12:51 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724490771.10190 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217317441 +Priority: 2 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989217317441 +Application: Gosub +AppData: sub-record-check,s,1(out,989217317441,dontcare) + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724490771.10190 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724490771.10190 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: __CALLFILENAME +Value: out-989217317441-10-20240824-121251-1724490771.10190 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989217317441-10-20240824-121251-1724490771.10190 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989217317441-10-20240824-121251-1724490771.10190.wav + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217317441 +Priority: 7 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771. +Variable: MOHCLASS +Value: default +Extension: 989217317441 +Application: Set +AppData: MOHCLASS=default + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217317441 +Priority: 11 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: MACRO_EXTEN +Value: 989217317441 +Extension: 989217317441 +Application: Macro +AppData: dialout-trunk,6,+79217317441,,off + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79217317441 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79217317441 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79217317441) + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Extension: s +Application: Dial +AppData: PJSIP/+79217317441@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79217317441^989217317441^6^1724490771^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: PROGRESSTIME +Value: + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +Variable: __REC_STATUS +Value: RECORDING + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +Variable: __DAY +Value: 24 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:12:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724490771.1 +Linkedid: 1724490771.10190 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:12:51 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011f9 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989217317441 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724490771.10191 +DestLinkedid: 1724490771.10190 +DialString: +79217317441@rt_769402 + + +12:12:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +Extension: 989217317441 +Application: AppDial +AppData: (Outgoing Line) + + +12:12:51 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: RINGTIME_MS +Value: 376 +Device: PJSIP/10 +State: INUSE +DestChannel: PJSIP/rt_769402-000011f9 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989217317441 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989217317441 +DestPriority: 1 +DestUniqueid: 1724490771.10191 +DestLinkedid: 1724490771.10190 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:12:52 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011f8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: PROGRESSTIME_MS +Value: 947 +DestChannel: PJSIP/rt_769402-000011f9 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989217317441 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989217317441 +DestPriority: 1 +DestUniqueid: 1724490771.10191 +DestLinkedid: 1724490771.10190 +DialStatus: PROGRESS + + +12:12:57 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0c94a5c7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490777.343482 +SentRTP: 1724530608 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0xc0c0e60e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 26971 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:13:02 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0c94a5c7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490782.341815 +SentRTP: 1724570608 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0xc0c0e60e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27220 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:13:07 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0c94a5c7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490787.342215 +SentRTP: 1724610608 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0xc0c0e60e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27470 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:13:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217317441 +Priority: 1 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:13:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:13:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +Variable: BRIDGEPEER +Value: PJSIP/10-000011f8 +DestChannel: PJSIP/rt_769402-000011f9 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989217317441 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724490771.10191 +DestLinkedid: 1724490771.10190 +DialStatus: ANSWER +BridgeUniqueid: 887167e7-2990-4d41-bdbd-39d51e7c2553 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:13:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: BRIDGEPVTCALLID +Value: f1f7eeae-32aa-4f32-9273-7d6914d6d2cf + + +12:13:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:13:25 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011f8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490771.10191 +Linkedid: 1724490771.10190 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 887167e7-2990-4d41-bdbd-39d51e7c2553 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:13:25 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 887167e7-2990-4d41-bdbd-39d51e7c2553 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/10-000011f8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: ARG1 +Value: + + +12:13:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011f9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217317441 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490771.10191 +Linkedid: 1 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; +Cause: 16 + + +12:13:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +12:13:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011f8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOS +Value: ssrc=2059818868;themssrc=4009430088;lp=0;rxjitter=0.000000;rxcount=1649;txjitter=0.001125;txcount=1654;rlp=0;rtt=0.000000;rxmes=0.000000 + + +12:13:25 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011f8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217317441 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724490771.10190 +Linkedid: 1724490771.10190 +Variable: RTPAUDIOQOSMES +Value: 1 +Source: 78162769402 +Destination: 989217317441 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011f9 +LastApplication: Dial +LastData: PJSIP/+79217317441@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 34 +BillableSeconds: 6 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724490771.10190 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10215 +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: L +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:13:25 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10216 + + +12:13:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:13:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:13:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724490823.1 +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011fa + + +12:13:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:13:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:13:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:13:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:13:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:13:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:13:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:13:43 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:13:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724490823.10192 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:13:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062021999 +Priority: 2 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989062021999 +Application: Gosub +AppData: sub-record-check,s,1(out,989062021999,dontcare) + + +12:13:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724490823.10192 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:13:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:13:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:13:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724490823.10192 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:13:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: __CALLFILENAME +Value: out-989062021999-10-20240824-121343-1724490823.10192 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989062021999-10-20240824-121343-1724490823.10192 + + +12:13:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989062021999-10-20240824-121343-1724490823.10192.wav + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:13:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062021999 +Priority: 7 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823. +Variable: MOHCLASS +Value: default +Extension: 989062021999 +Application: Set +AppData: MOHCLASS=default + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062021999 +Priority: 11 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_EXTEN +Value: 989062021999 +Extension: 989062021999 +Application: Macro +AppData: dialout-trunk,6,+79062021999,,off + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:13:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:13:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:13:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:13:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:13:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79062021999 + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79062021999 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79062021999) + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Extension: s +Application: Dial +AppData: PJSIP/+79062021999@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79062021999^989062021999^6^1724490823^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: PROGRESSTIME +Value: + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +Variable: __REC_STATUS +Value: RECORDING + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +Variable: __DAY +Value: 24 + + +12:13:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:13:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:13:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724490823.1 +Linkedid: 1724490823.10192 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:13:44 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011fb +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989062021999 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724490823.10193 +DestLinkedid: 1724490823.10192 +DialString: +79062021999@rt_769402 + + +12:13:44 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Extension: 989062021999 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Variable: RINGTIME_MS +Value: 369 +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +DestChannel: PJSIP/rt_769402-000011fb +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989062021999 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989062021999 +DestPriority: 1 +DestUniqueid: 1724490823.10193 +DestLinkedid: 1724490823.10192 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:13:49 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011fa +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: PROGRESSTIME_MS +Value: 5163 +DestChannel: PJSIP/rt_769402-000011fb +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989062021999 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989062021999 +DestPriority: 1 +DestUniqueid: 1724490823.10193 +DestLinkedid: 1724490823.10192 +DialStatus: PROGRESS + + +12:13:59 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7a00622d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490839.275282 +SentRTP: 1724570824 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x8d5b4537 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 2980 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:14:04 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7a00622d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490844.274646 +SentRTP: 1724610824 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x8d5b4537 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3230 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:14:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062021999 +Priority: 1 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:14:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:14:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +Variable: BRIDGEPEER +Value: PJSIP/10-000011fa +DestChannel: PJSIP/rt_769402-000011fb +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989062021999 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724490823.10193 +DestLinkedid: 1724490823.10192 +DialStatus: ANSWER +BridgeUniqueid: 6302871a-45b8-489a-8397-c67e0ef89bff +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:14:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: BRIDGEPVTCALLID +Value: d7ab68db-bf67-4e70-8b81-30610b557d21 + + +12:14:09 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7a00622d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490849.275719 +SentRTP: 1724650664 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0x8d5b4537 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3480 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:14:14 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7a00622d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490854.275016 +SentRTP: 1724690824 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0x8d5b4537 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3730 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:14:19 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7a00622d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490859.274769 +SentRTP: 1724730824 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0x8d5b4537 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3980 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:14:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:14:26 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011fa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 6302871a-45b8-489a-8397-c67e0ef89bff +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:14:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_EXTEN +Value: + + +12:14:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:14:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062021999 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490823.10193 +Linkedid: 1724490823.10192 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +BridgeUniqueid: 6302871a-45b8-489a-8397-c67e0ef89bff +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +12:14:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: MACRO_PRIORITY +Value: +Source: 78162769402 +Destination: 989062021999 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011fb +LastApplication: Dial +LastData: PJSIP/+79062021999@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 42 +BillableSeconds: 20 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724490823.10192 +UserField: +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing + + +12:14:26 + +Event: UserEvent +Privilege: agent,all +Channel: PJSIP/10-000011fa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062021999 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724490823.10192 +Linkedid: 1724490823.10192 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000132; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Device: PJSIP/10 +State: NOT_INUSE +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:14:26 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10218 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116067952 +Priority: 1 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724490885.1 +Linkedid: 1724490885.10194 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011fc + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724490885.10194 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:14:45 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724490885.10194 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116067952 +Priority: 2 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116067952 +Application: Gosub +AppData: sub-record-check,s,1(out,989116067952,dontcare) + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724490885.10194 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724490885.10194 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: __CALLFILENAME +Value: out-989116067952-10-20240824-121445-1724490885.10194 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116067952-10-20240824-121445-1724490885.10194 + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989116067952-10-20240824-121445-1724490885.10194.wav + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116067952 +Priority: 7 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885. +Variable: MOHCLASS +Value: default +Extension: 989116067952 +Application: Set +AppData: MOHCLASS=default + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116067952 +Priority: 11 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_EXTEN +Value: 989116067952 +Extension: 989116067952 +Application: Macro +AppData: dialout-trunk,6,+79116067952,,off + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79116067952 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79116067952 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116067952) + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Extension: s +Application: Dial +AppData: PJSIP/+79116067952@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116067952^989116067952^6^1724490885^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: PROGRESSTIME +Value: + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +Variable: __REC_STATUS +Value: RECORDING + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +Variable: __DAY +Value: 24 + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:14:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:14:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724490885.1 +Linkedid: 1724490885.10194 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:14:45 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116067952 +Priority: 1 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011fd +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116067952 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724490885.10195 +DestLinkedid: 1724490885.10194 +DialString: +79116067952@rt_769402 + + +12:14:45 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dialout-trunk +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 28 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: RINGTIME_MS +Value: 344 +DestChannel: PJSIP/rt_769402-000011fd +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116067952 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116067952 +DestPriority: 1 +DestUniqueid: 1724490885.10195 +DestLinkedid: 1724490885.10194 +DialStatus: RINGING +Device: PJSIP/10 +State: INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:14:49 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-000011fc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: PROGRESSTIME_MS +Value: 3784 +DestChannel: PJSIP/rt_769402-000011fd +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116067952 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116067952 +DestPriority: 1 +DestUniqueid: 1724490885.10195 +DestLinkedid: 1724490885.10194 +DialStatus: PROGRESS + + +12:14:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116067952 +Priority: 1 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:14:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:14:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +Variable: BRIDGEPEER +Value: PJSIP/10-000011fc +DestChannel: PJSIP/rt_769402-000011fd +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116067952 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724490885.10195 +DestLinkedid: 1724490885.10194 +DialStatus: ANSWER +BridgeUniqueid: dc6c651b-d9f9-4e11-bafe-0a52b4c5a0f6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:14:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: BRIDGEPVTCALLID +Value: bb6157a2-3960-487e-945f-229715cd9a91 + + +12:14:54 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x381e5350 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490894.511379 +SentRTP: 1724530888 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x3ff480b6 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 13361 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:14:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +Variable: RTPAUDIOQOSBRIDGED +Value: ssrc=1365378624;themssrc=2212355420;lp=0;rxjitter=0.000000;rxcount=412;txjitter=0.001625;txcount=416;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +12:14:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011fd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 9891160679 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000259; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:14:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: ANSWEREDTIME_MS +Value: 7318 +BridgeUniqueid: dc6c651b-d9f9-4e11-bafe-0a52b4c5a0f6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:14:57 + +Event: Cdr +Privilege: call,all +Channel: PJSIP/10-000011fc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +12:14:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +12:14:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116067952 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490885.10195 +Linkedid: 1724490885.10194 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: dc6c651b-d9f9-4e11-bafe-0a52b4c5a0f6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000231; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +12:14:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000250;maxrxjitter=000.002000;avgrxjitter=000.001676;stdevrxjitter=000.000259;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Cause: 16 +Cause-txt: Normal Clearing + + +12:14:57 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116067952 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724490885.10194 +Linkedid: 1724490885.10194 +Variable: RTPAUDIOQOSMES +Value: 1 +Device: PJSIP/10 +State: NOT_INUSE +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: dc6c651b-d9f9-4e11-bafe-0a52b4c5a0f6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10220 + + +12:16:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116075196 +Priority: 1 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:16:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:16:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724490963.1 +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-000011fe + + +12:16:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:16:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:16:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:16:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:16:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:16:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:16:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:16:03 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:16:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724490963.10196 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:16:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116075196 +Priority: 2 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116075196 +Application: Gosub +AppData: sub-record-check,s,1(out,989116075196,dontcare) + + +12:16:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724490963.10196 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:16:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724490963.10196 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: __CALLFILENAME +Value: out-989116075196-10-20240824-121603-1724490963.10196 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116075196-10-20240824-121603-1724490963.10196 + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989116075196-10-20240824-121603-1724490963.10196.wav + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116075196 +Priority: 7 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963. +Variable: MOHCLASS +Value: default +Extension: 989116075196 +Application: Set +AppData: MOHCLASS=default + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116075196 +Priority: 11 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_EXTEN +Value: 989116075196 +Extension: 989116075196 +Application: Macro +AppData: dialout-trunk,6,+79116075196,,off + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79116075196 + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79116075196 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116075196) + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Extension: s +Application: Dial +AppData: PJSIP/+79116075196@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116075196^989116075196^6^1724490963^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: PROGRESSTIME +Value: + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +Variable: __REC_STATUS +Value: RECORDING + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +Variable: __DAY +Value: 24 + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:16:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:16:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724490963.1 +Linkedid: 1724490963.10196 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:16:04 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000011ff +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116075196 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724490963.10197 +DestLinkedid: 1724490963.10196 +DialString: +79116075196@rt_769402 + + +12:16:04 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116075196 +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +Extension: 989116075196 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/rt_769402 +State: RINGING + + +12:16:04 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: RINGTIME_MS +Value: 389 +DestChannel: PJSIP/rt_769402-000011ff +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116075196 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116075196 +DestPriority: 1 +DestUniqueid: 1724490963.10197 +DestLinkedid: 1724490963.10196 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:16:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: PROGRESSTIME_MS +Value: 2880 + + +12:16:17 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116075196 +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6797e69b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490977.012196 +SentRTP: 1724570960 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xf288e8c7 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 43610 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:16:22 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116075196 +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6797e69b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490982.012484 +SentRTP: 1724610960 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0xf288e8c7 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 43860 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:16:25 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/rt_769402 +State: INUSE +Channel: PJSIP/rt_769402-000011ff +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116075196 +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +Variable: LOCAL(ARG5) +Value: + + +12:16:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:16:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +Variable: BRIDGEPEER +Value: PJSIP/10-000011fe +DestChannel: PJSIP/rt_769402-000011ff +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116075196 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724490963.10197 +DestLinkedid: 1724490963.10196 +DialStatus: ANSWER +BridgeUniqueid: 291558fe-7cd3-491d-989e-0288fbfc8ba6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:16:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: BRIDGEPVTCALLID +Value: f5bd0e6a-dc3f-4adb-82c5-7d0ce75fe9d6 + + +12:16:27 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6797e69b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490987.012857 +SentRTP: 1724650960 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0xf288e8c7 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 44110 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:16:32 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6797e69b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490992.012104 +SentRTP: 1724690800 +SentPackets: 1250 +SentOctets: 200000 +Report0SourceSSRC: 0xf288e8c7 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 44359 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:16:37 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6797e69b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724490997.012393 +SentRTP: 1724730960 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0xf288e8c7 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 44609 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:16:42 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6797e69b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491002.012447 +SentRTP: 1724770960 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0xf288e8c7 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 44859 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:16:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:16:47 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-000011fe +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 291558fe-7cd3-491d-989e-0288fbfc8ba6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:16:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_EXTEN +Value: + + +12:16:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116075196 +ConnectedLineName: C +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:16:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000011ff +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116075196 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724490963.10197 +Linkedid: 1724490963.10196 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.3 +BridgeUniqueid: 291558fe-7cd3-491d-989e-0288fbfc8ba6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:16:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000011fe +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Variable: RTPAUDIOQOS +Value: ssrc=931052953;themssrc=3204965470;lp=0;rxjitter=0.000000;rxcount=2019;txjitter=0.001500;txcount=2022;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +12:16:47 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/10-000011fe +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116075196 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724490963.10196 +Linkedid: 1724490963.10196 +Variable: RTPAUDIOQOSMES +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10221 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 78162769402 +Destination: 989116075196 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000011ff +LastApplication: Dial +LastData: PJSIP/+79116075196@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 + + +12:16:47 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10222 + + +12:17:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T12 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +12:17:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T12 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +12:18:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:18:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:18:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-121835 +Variable: __YEAR +Value: 2024 + + +12:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:18:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +12:18:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724491115.10198 +Linkedid: 17244911 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: 78162769402 +Application: Set +AppData: __FROM_DID=78162769402 +Variable: __FROM_DID +Value: 78162769402 + + +12:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 3 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +12:18:35 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 2 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +12:18:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +CommandId: 1777224844 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:18:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +CommandId: 32819840 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:18:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +CommandId: 1059498614 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:18:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +CommandId: 1827550195 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +12:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +12:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724491115.10198 + + +12:18:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=rt_769402-00001200 + + +12:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=rt_769402-00001200 + + +12:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +12:18:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:18:35 + +Event: Va +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +12:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724491115.10198 +Linkedid: 1724 +Extension: s +Application: Set +AppData: CDR(cnam)=79116067952 +Variable: MACRO_DEPTH +Value: 1 + + +12:18:35 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: MACRO_PRIORITY +Value: +Extension: 194 +Application: Answer +AppData: +Device: PJSIP/rt_769402 +State: INUSE + + +12:18:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: __FROMQUEUEEXTEN +Value: 79116067952 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset + + +12:18:36 + +Event: +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/rt_769402-00001200)=TRUE + + +12:18:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +12:18:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +12:18:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +12:18:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 791 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 20 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: 194 +Application: Set +AppData: VQ_RETRY= +Variable: QRETRY +Value: + + +12:18:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +12:18:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: +Priority: 30 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: QPOSITION +Value: + + +12:18:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +12:18:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +12:18:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +12:18:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +12:18:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +12:18:42 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000277; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 + + +12:18:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001200 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +12:18:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: RTPAUDIOQOS +Value: ssrc=1025194676;themssrc=862373447;lp=0;rxjitter=0.000000;rxcount=293;txjitter=0.000875;txcount=294;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Extension: s +Application: Hangup +AppData: + + +12:18:42 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/RT_769402 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116067952 +CallerIDName: 79116067952 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724491115.10198 +Linkedid: 1724491115.10198 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79116067952 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116067952" <79116067952> +DestinationChannel: +LastApplication: Playback +LastData: custom/Privet_23_08, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 6 +BillableSeconds: 6 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491115.10198 +UserField: +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10223 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989052908796 +Priority: 1 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: ARG3 +Value: +Extension: 989052908796 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEP +Value: + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724491180.1 +Linkedid: 1724491180.10199 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: MACRO_DEPTH +Value: 1 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724491 +Linkedid: 1724491180.10199 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-us +Exten: s +Priority: 14 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=10) +Variable: MACRO_DEPTH +Value: 1 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 +Variable: MACRO_DEPTH +Value: 1 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 26 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(GROUP(concurrency_limit)=10) + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: CDR(cnum)=10 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989052908796 +Priority: 2 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: 989052908796 +Application: Gosub +AppData: sub-record-check,s,1(out,989052908796,dontcare) +Variable: L +Value: out + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724491180.10199 +Linkedid: 17 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724491180.101 +Linkedid: 1724491180.10199 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989052908796-10-20240824-121940-1724491180.10199 +Variable: RECFROMEXTEN +Value: 10 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __RECORD_ID +Value: PJSIP/10-00001201 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: out +Application: Return +AppData: +Variable: ARGC +Value: + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989052908796 +Priority: 6 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: _ROUTENAME +Value: Megafon +Extension: 989052908796 +Application: Set +AppData: MOHCLA + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989052908796 +Priority: 10 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: _NODEST +Value: +Extension: 989052908796 +Application: Set +AppData: _NODEST= + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 6 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_NUMBER=+79052908796 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=) + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 12 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALLOWTHISROUTE=YES) + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: MACRO_DEPTH +Value: 2 + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 22 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(EMERGENCYCID=) + + +12:19:40 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 39 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=prohib_passed_screen) + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 14 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 18 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) +Variable: MACRO_DEPTH +Value: 1 + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: s +Application: Macro +AppData: dialout-trunk-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 21 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: GotoIf +AppData: 0?bypass,1 + + +12:19:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +79052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 23 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(name,i)=CID + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 27 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: __~HASH~SIPHEADERS~Alert-Info~ +Value: unset +Extension: s +Application: Set +AppData: HASH(__SIPHEADERS,Alert-Info)=unset + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: s +Application: Dial +AppData: PJSIP/+79052908796@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79052908796^989052908796^6^1724491180^^78162769402) +Variable: RINGTIME +Value: + + +12:19:40 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +Variable: ROUTENAME +Value: Megafon + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +Variable: __YEAR +Value: 2024 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_76940 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +Variable: LOCAL(ARGC) +Value: 1 +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 5 +Uniqueid: 1724491180.1020 +Linkedid: 1724491180.10199 +Extension: s +Application: Set +AppData: sipheader=unset +Variable: WHILE_0 +Value: func-apply-sipheaders,s,4 + + +12:19:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 12 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +Extension: s +Application: EndWhile +AppData: +Variable: END_WHILE_0 +Value: func-apply-sipheaders,s,13 + + +12:19:40 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-00001202 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989052908796 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491180.10200 +DestLinkedid: 1724491180.10199 +DialString: + + +12:19:40 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 + + +12:19:40 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: 989052908796 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Variable: RINGTIME_MS +Value: 482 +DestChannel: PJSIP/rt_769402-00001202 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989052908796 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989052908796 +DestPriority: 1 +DestUniqueid: 1724491180.10200 +DestLinkedid: 1724491180.10199 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:19:42 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: PROGRESSTIME_MS +Value: 2245 +DestChannel: PJSIP/rt_769402-00001202 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989052908796 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989052908796 +DestPriority: 1 +DestUniqueid: 1724491180.10200 +DestLinkedid: 1724491180.10199 +DialStatus: PROGRESS + + +12:19:47 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989052908796 +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x431abdf5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491187.696062 +SentRTP: 1724531176 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x16aa966d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25391 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:19:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: DIALEDPEERNAME +Value: PJSIP/rt_769402-00001202 + + +12:19:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 2 +Uniqueid: 1724491 +Linkedid: 1724491180.10199 +Variable: LOCAL(ARGC) +Value: 6 +Extension: s +Application: GotoIf +AppData: 0?sendEmail + + +12:19:49 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/10-00001201 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-00001202 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989052908796 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk + + +12:19:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +BridgeUniqueid: 3ec7a0c9-8728-4864-93c7-54fc05a272f1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: e0f80aed-749e-4868-b79a-4226af16bf5a + + +12:19:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x431abdf5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491192.696493 +SentRTP: 1724571176 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x16aa966d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25641 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:19:57 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x431abdf5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491197.696841 +SentRTP: 1724611176 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x16aa966d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25891 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:20:02 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x431abdf5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491202.696661 +SentRTP: 1724651176 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0x16aa966d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 26141 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:20:12 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x431abdf5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491212.696494 +SentRTP: 1724731176 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0x16aa966d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 26641 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:20:17 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x431abdf5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491217.696842 +SentRTP: 1724771176 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0x16aa966d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 26891 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:20:22 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x431abdf5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491222.698281 +SentRTP: 1724811176 +SentPackets: 2001 +SentOctets: 320160 +Report0SourceSSRC: 0x16aa966d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27141 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:20:27 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x431abdf5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491227.696721 +SentRTP: 1724851176 +SentPackets: 2251 +SentOctets: 360160 +Report0SourceSSRC: 0x16aa966d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27391 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:20:32 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x431abdf5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491232.696644 +SentRTP: 1724891176 +SentPackets: 2501 +SentOctets: 400160 +Report0SourceSSRC: 0x16aa966d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27641 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:20:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:20:34 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-00001201 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 3ec7a0c9-8728-4864-93c7-54fc05a272f1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:20:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_EXTEN +Value: + + +12:20:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: C +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:20:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001201 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052908796 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491180.10199 +Linkedid: 1724491180.10199 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Source: 78162769402 +Destination: 989052908796 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001202 +LastApplication: Dial +LastData: PJSIP/+79052908796@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 54 +BillableSeconds: 44 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491180.10199 +UserField: + + +12:20:34 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-00001202 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052908796 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491180.10200 +Linkedid: 1724491180.10199 +Variable: RTPAUDIOQOS +Value: ssrc=1125826037;themssrc=380278381;lp=0;rxjitter=0.000000;rxcount=2583;txjitter=0.000750;txcount=2579;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +BridgeUniqueid: 3ec7a0c9-8728-4864-93c7-54fc05a272f1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:21:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 22 +Priority: 3 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: __RINGTIMER +Value: 60 +Extension: 22 +Application: Macro +AppData: exten-vm,novm,22,0, + + +12:21:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +Language: ru +AccountCode: +Context: ext-local +Exten: 22 +Priority: 3 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 1 + + +12:21:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724491316.10201 + + +12:21:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=12-00001203 + + +12:21:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12-00001203 + + +12:21:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Ре +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:21:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?limit + + +12:21:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) + + +12:21:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 21 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: Set +AppData: __DIAL_OPTIONS=HhTtr +Variable: MACRO_DEPTH +Value: 2 + + +12:21:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: DB_RESULT +Value: 79217365096 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=22) + + +12:21:56 + +Event: VarSet +Privilege: dialplan,a +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 25 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: DB_RESULT +Value: 3 + + +12:21:56 + +Event: +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 +Variable: MACRO_DEPTH +Value: 2 + + +12:21:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: Set +AppData: __TTL=64 +Variable: MACRO_DEPTH +Value: 2 + + +12:21:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 172 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:21:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_PRIORITY +Value: 3 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:21:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: Set +AppData: __PICKUPMARK=22 +Variable: MACRO_DEPTH +Value: 1 + + +12:21:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +12:21:56 + +Event: +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: __FROMEXTEN +Value: 12 +Extension: s +Application: Set +AppData: __FROMEXTEN=12 + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 12 and 22 +Variable: MACRO_DEPTH +Value: 1 + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: exten +Application: Set +AppData: RECMODE=yes +Variable: DB_RESULT +Value: yes + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 22 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: exten +Application: ExecIf +AppData: 0?Set(RECMODE=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/internal-22-1 +Variable: MACRO_DEPTH +Value: 1 + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=PJSIP/12-00001203 + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtr,22 + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 1 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: DEXTEN +Value: 22 +Extension: s +Application: Set +AppData: DEXTEN=22 + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724491316.10 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: EXTHASCW=ENABLED + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=2) + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/22 + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: THISDIAL +Value: PJSIP/22/sip +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/22/sip + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724491316.102 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистрату +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 46 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Gosub +AppData: sub-presencestate-display,s,1(22) +Hint: PJSIP/12&Custom +Status: 1 +StatusText: InUse + + +12:21:57 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-display +Exten: state-not_set +Priority: 2 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 2 +Extension: state-not_set +Application: Return +AppData: + + +12:21:57 + +Event: Newexten +Privilege: d +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 49 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtr +Variable: MACRO_DEPTH +Value: 2 + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Extension: s +Application: Dial +AppData: PJSIP/22/sip +Variable: ANSWEREDTIME +Value: + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-00001204 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491316.10202 +Linkedid: 1724491316.10201 +Variable: __KEEPCID +Value: TRUE + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-00001204 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491316.10202 +Linkedid: 1724491316.10201 +Variable: +Value: 2024 + + +12:21:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/22-00001204 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-internal +Exten: 22 +Priority: 1 +Uniqueid: 1724491316.10202 +Linkedid: 1724491316.10201 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 22 +Application: AppDial +AppData: (Outgoing Line) + + +12:21:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-00001204 +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724491316.10202 +Linkedid: 1724491316.10201 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +12:21:57 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: RINGTIME_MS +Value: 32 +DestChannel: PJSIP/22-00001204 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 22 +DestCallerIDName: Столовая +DestConnectedLineNum: 12 +DestConnectedLineName: Регистратура_1 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491316.10202 +DestLinkedid: 1724491316.10201 +DialString: 22/sip +Device: PJSIP/12 +State: INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 8 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Hint: PJSIP/22&Custom +StatusText: Ringing +Extension: 22 +Application: AppDial +AppData: (Outgoing Line) + + +12:21:57 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/22 +State: RINGING + + +12:22:00 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/12-00001203 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: ext-local +Exten: 22 +Priority: 55 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: DIALSTATUS +Value: ANSWER +Hint: PJSIP/22&Custom +Status: 1 +StatusText: InUse + + +12:22:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-00001204 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: DIALEDPEERNUMBER +Value: 22/sip +DestChannel: PJSIP/22-00001204 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 22 +DestCallerIDName: Столовая +DestConnectedLineNum: 12 +DestConnectedLineName: Регистратура_1 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: +DestPriority: 1 +DestUniqueid: 1724491316.10202 +DestLinkedid: 1724491316.10201 +DialStatus: ANSWER +Device: PJSIP/22 +State: INUSE +BridgeUniqueid: 1898682d-6402-4f1d-95bd-bb40054dc139 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:22:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: BRIDGEPVTCALLID +Value: c5b9cd17-318c-41af-acef-d22a9e03e109 + + +12:22:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-00001204 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724491316.10202 +Linkedid: 1724491316.10201 +Variable: RTPAUDIOQOSJITTERBRIDGED +Value: minrxjitter=000.000000;maxrxjitter=000.001500;avgrxjitter=000.001194;stdevrxjitter=000.000243;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +12:22:06 + +Event: Var +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: BRIDGEPEER +Value: + + +12:22:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: DIALEDTIME_MS +Value: 9460 +Source: 12 +Destination: 22 +DestinationContext: ext-local +CallerID: "Регистратура_1" <12> +DestinationChannel: PJSIP/22-00001204 +LastApplication: Dial +LastData: PJSIP/22/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 9 +BillableSeconds: 5 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491316.10201 +UserField: +BridgeUniqueid: 1898682d-6402-4f1d-95bd-bb40054dc139 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:22:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: ARG1 +Value: +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +12:22:06 + +Event: VarSet +Privilege: dialpla +Channel: PJSIP/12-00001203 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:22:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +12:22:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001203 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491316.10201 +Linkedid: 1724491316.10201 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.3672 + + +12:22:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-00001204 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724491316.10202 +Linkedid: 1724491316.10201 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: 1898682d-6402-4f1d-95bd-bb40054dc139 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +12:22:06 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/22 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 22 +Priority: 1 +Uniqueid: 1724491316.10202 +Linkedid: 1724491316.10201 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/22 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10227 +Hint: PJSIP/22&Custom +Status: 0 +StatusText: Idle + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116204487 +Priority: 1 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: ARG3 +Value: +Extension: 989116204487 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEP +Value: + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724491438.1 +Linkedid: 1724491438.10203 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: MACRO_DEPTH +Value: 1 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724491 +Linkedid: 1724491438.10203 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-us +Exten: s +Priority: 14 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=10) +Variable: MACRO_DEPTH +Value: 1 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 +Variable: MACRO_DEPTH +Value: 1 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 26 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(GROUP(concurrency_limit)=10) + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: CDR(cnum)=10 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116204487 +Priority: 2 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: 989116204487 +Application: Gosub +AppData: sub-record-check,s,1(out,989116204487,dontcare) +Variable: L +Value: out + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724491438.10203 +Linkedid: 17 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724491438.102 +Linkedid: 1724491438.10203 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116204487-10-20240824-122358-1724491438.10203 +Variable: RECFROMEXTEN +Value: 10 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __RECORD_ID +Value: PJSIP/10-00001205 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: out +Application: Return +AppData: +Variable: ARGC +Value: + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116204487 +Priority: 6 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: _ROUTENAME +Value: Megafon +Extension: 989116204487 +Application: Set +AppData: MOHCLA + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116204487 +Priority: 10 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: _NODEST +Value: +Extension: 989116204487 +Application: Set +AppData: _NODEST= + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 6 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_NUMBER=+79116204487 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=) + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 12 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALLOWTHISROUTE=YES) + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: MACRO_DEPTH +Value: 2 + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 22 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(EMERGENCYCID=) + + +12:23:58 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 39 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=prohib_passed_screen) + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 14 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 18 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) +Variable: MACRO_DEPTH +Value: 1 + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: s +Application: Macro +AppData: dialout-trunk-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 21 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: GotoIf +AppData: 0?bypass,1 + + +12:23:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +79116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 23 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(name,i)=CID + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 27 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: __~HASH~SIPHEADERS~Alert-Info~ +Value: unset +Extension: s +Application: Set +AppData: HASH(__SIPHEADERS,Alert-Info)=unset + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: s +Application: Dial +AppData: PJSIP/+79116204487@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116204487^989116204487^6^1724491438^^78162769402) +Variable: RINGTIME +Value: + + +12:23:58 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491438.10204 +Linkedid: 1724491438.10203 +Variable: ROUTENAME +Value: Megafon + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491438.10204 +Linkedid: 1724491438.10203 +Variable: __YEAR +Value: 2024 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_76940 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116204487 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724491438.10204 +Linkedid: 1724491438.10203 +Variable: LOCAL(ARGC) +Value: 1 +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116204487 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 5 +Uniqueid: 1724491438.1020 +Linkedid: 1724491438.10203 +Extension: s +Application: Set +AppData: sipheader=unset +Variable: WHILE_0 +Value: func-apply-sipheaders,s,4 + + +12:23:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116204487 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 12 +Uniqueid: 1724491438.10204 +Linkedid: 1724491438.10203 +Extension: s +Application: EndWhile +AppData: +Variable: END_WHILE_0 +Value: func-apply-sipheaders,s,13 + + +12:23:58 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-00001206 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116204487 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491438.10204 +DestLinkedid: 1724491438.10203 +DialString: + + +12:23:58 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 + + +12:23:58 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: 989116204487 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Variable: RINGTIME_MS +Value: 338 +DestChannel: PJSIP/rt_769402-00001206 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116204487 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116204487 +DestPriority: 1 +DestUniqueid: 1724491438.10204 +DestLinkedid: 1724491438.10203 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:24:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: PROGRESSTIME_MS +Value: 4971 + + +12:24:08 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116204487 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116204487 +Priority: 1 +Uniqueid: 1724491438.10204 +Linkedid: 1724491438.10203 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0d7a6558 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491448.603283 +SentRTP: 1724531280 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0xdf936228 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 55058 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:24:13 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116204487 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116204487 +Priority: 1 +Uniqueid: 1724491438.10204 +Linkedid: 1724491438.10203 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0d7a6558 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491453.609693 +SentRTP: 1724571440 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xdf936228 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 55308 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 17 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:24:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116204487 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116204487 +Priority: 1 +Uniqueid: 1724491438.10204 +Linkedid: 1724491438.10203 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:24:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116204487 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724491438.10204 +Linkedid: 1724491438.10203 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:24:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116204487 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491438.10204 +Linkedid: 1724491438.10203 +Variable: BRIDGEPEER +Value: PJSIP/10-00001205 +DestChannel: PJSIP/rt_769402-00001206 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116204487 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724491438.10204 +DestLinkedid: 1724491438.10203 +DialStatus: ANSWER +BridgeUniqueid: 2ed31508-55e3-47c5-a8fa-b76e4385a38d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:24:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: BRIDGEPVTCALLID +Value: 22981dfb-09ac-4150-893e-406567965f9c + + +12:24:28 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116204487 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491438.10204 +Linkedid: 1724491438.10203 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0d7a6558 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491468.603152 +SentRTP: 1724691280 +SentPackets: 1249 +SentOctets: 199840 +Report0SourceSSRC: 0xdf936228 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 56058 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 21 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:24:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001206 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:24:29 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-00001205 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 2ed31508-55e3-47c5-a8fa-b76e4385a38d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:24:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_EXTEN +Value: + + +12:24:29 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-00001205 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall +BridgeUniqueid: 2ed31508-55e3-47c5-a8fa-b76e4385a38d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: + + +12:24:29 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 2ed31508-55e3-47c5-a8fa-b76e4385a38d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/10-00001205 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_DEPTH +Value: 1 +Source: 78162769402 +Destination: 989116204487 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001206 +LastApplication: Dial +LastData: PJSIP/+79116204487@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 30 +BillableSeconds: 13 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491438.10203 +UserField: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +12:24:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001205 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: RTPAUDIOQOS +Value: ssrc=463042042;themssrc=26 + + +12:24:29 + +Event: UserEvent +Privilege: +Channel: PJSIP/10-00001205 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116204487 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491438.10203 +Linkedid: 1724491438.10203 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000140; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:24:29 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10229 + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021493814 +Priority: 1 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491482.1 +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-00001207 + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:24:42 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491482.10205 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021493814 +Priority: 2 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989021493814 +Application: Gosub +AppData: sub-record-check,s,1(out,989021493814,dontcare) + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724491482.10205 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724491482.10205 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: __CALLFILENAME +Value: out-989021493814-10-20240824-122442-1724491482.10205 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989021493814-10-20240824-122442-1724491482.10205 + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989021493814-10-20240824-122442-1724491482.10205.wav + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021493814 +Priority: 7 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482. +Variable: MOHCLASS +Value: default +Extension: 989021493814 +Application: Set +AppData: MOHCLASS=default + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021493814 +Priority: 11 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_EXTEN +Value: 989021493814 +Extension: 989021493814 +Application: Macro +AppData: dialout-trunk,6,+79021493814,,off + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:24:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:24:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:24:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:24:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:24:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79021493814 + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79021493814 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79021493814) + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Extension: s +Application: Dial +AppData: PJSIP/+79021493814@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79021493814^989021493814^6^1724491482^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: PROGRESSTIME +Value: + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +Variable: __REC_STATUS +Value: RECORDING + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +Variable: __DAY +Value: 24 + + +12:24:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021493814 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:24:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021493814 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:24:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021493814 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724491482.1 +Linkedid: 1724491482.10205 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:24:43 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001208 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989021493814 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491482.10206 +DestLinkedid: 1724491482.10205 +DialString: +79021493814@rt_769402 + + +12:24:43 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001207 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Extension: 989021493814 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Variable: RINGTIME_MS +Value: 373 +DestChannel: PJSIP/rt_769402-00001208 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989021493814 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989021493814 +DestPriority: 1 +DestUniqueid: 1724491482.10206 +DestLinkedid: 1724491482.10205 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:24:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021493814 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989021493814 +Priority: 1 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +Variable: LOCAL(ARG6) +Value: 78162769402 +Device: PJSIP/rt_769402 +State: INUSE + + +12:24:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021493814 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +Extension: s +Application: Return +AppData: +Variable: ARG1 +Value: + + +12:24:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021493814 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +DestChannel: PJSIP/rt_769402-00001208 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989021493814 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724491482.10206 +DestLinkedid: 1724491482.10205 +DialStatus: ANSWER +BridgeUniqueid: 564ff960-0fb1-4501-8ac8-073fb4823e40 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:24:58 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 564ff960-0fb1-4501-8ac8-073fb4823e40 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/10-00001207 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: BRIDGEPVTCALLID +Value: 48264f9a-6e99-464b-9cd9-85929deb116b + + +12:25:03 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021493814 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1ff082a5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491503.732985 +SentRTP: 1724531336 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0xd532e861 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 20329 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 58 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 16 +Priority: 1 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:25:04 + +Event: +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 16 +Priority: 3 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_EXTEN +Value: 16 +Extension: 16 +Application: Macro +AppData: exten-vm,novm,16,0,0,0 + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: CHANEXTEN +Value: 12-00001209 +Extension: s +Application: Set +AppData: CHANEXTEN=12-00001209 + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 2 + + +12:25:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: MACRO_DEPTH +Value: 2 + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 22 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(all)="Регистратура_1" <12> + + +12:25:04 + +Event: Newexten +Privilege: dialpla +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: DB_RESULT +Value: 79217365096 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=16) + + +12:25:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 25 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?limit + + +12:25:04 + +Event: New +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: __TTL +Value: 64 +Extension: s +Application: Set +AppData: __TTL=64 + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-calle +Exten: s +Priority: 52 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: Set +AppData: CDR(cnam)=Регистратура_1 +Variable: MACRO_DEPTH +Value: 2 + + +12:25:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 54 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 1 + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +12:25:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: 0?initialized + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +12:25:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: Set +AppData: __FROMEXTEN=12 +Variable: MACRO_DEPTH +Value: 1 + + +12:25:04 + +Event: Newexten +Privilege: d +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=internal + + +12:25:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +12:25:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-ch +Exten: exten +Priority: 14 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: Set +AppData: CALLERRECMODE=yes + + +12:25:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 22 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(RECMODE=dontcare) + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +12:25:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491504.10207 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/internal-16-12-20240824-122504-1724491504.10207.wav,abi(), + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Рег +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: Macro +AppData: dial-one,,HhTtr,16 +Variable: MACRO_EXTEN +Value: s + + +12:25:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 1 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=16 + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: GotoIf +AppData: 0?next1 +Variable: MACRO_DEPTH +Value: 2 + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +12:25:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/16/sip +Variable: MACRO_DEPTH +Value: 2 + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: +Extension: dstring +Application: Set +AppData: ITER=2 + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/16)=12 + + +12:25:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-display +Exten: s +Priority: 1 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Goto +AppData: state-not_set,1 + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.1 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +12:25:05 + +Event: +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: Dial +AppData: PJSIP/16/sip +Variable: DIALEDTIME +Value: + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-0000120a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491504.10208 +Linkedid: 1724491504.10207 +Variable: __REC_STATUS +Value: RECORDING + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-0000120a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491504.10208 +Linkedid: 1724491504.10207 +Variable: __PICKUPMARK +Value: 16 + + +12:25:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-0000120a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724491504.10208 +Linkedid: 1724491504.10207 +Variable: TECH +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +12:25:05 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/16-0000120a +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 16 + + +12:25:05 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/16 +State: RINGING +Exten: s +Context: macro-dial-one +Hint: PJSIP/16&Custom +Status: 8 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/12-00001209 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: 16 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 39 +DestChannel: PJSIP/16-0000120a +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 16 +DestCallerIDName: Каб. 4 +DestConnectedLineNum: 12 +DestConnectedLineName: Регистратура_1 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 16 +DestPriority: 1 +DestUniqueid: 1724491504.10208 +DestLinkedid: 1724491504.10207 +DialStatus: RINGING + + +12:25:08 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021493814 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1ff082a5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491508.732671 +SentRTP: 1724571336 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0xd532e861 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 20581 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:25:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021493814 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +Variable: RTPAUDIOQOSJITTERBRIDGED +Value: minrxjitter=000.000125;maxrxjitter=000.001875;avgrxjitter=000.001578;stdevrxjitter=000.000219;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +12:25:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000219; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:25:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 28 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: DIALSTATUS +Value: ANSWER +BridgeUniqueid: 564ff960-0fb1-4501-8ac8-073fb4823e40 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:25:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001207 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:25:12 + +Event: Newexten +Privilege: dialpla +Channel: PJSIP/10-00001207 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: 564ff960-0fb1-4501-8ac8-073fb4823e40 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:25:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001208 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021493814 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491482.10206 +Linkedid: 1724491482.10205 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.0000 + + +12:25:12 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/RT_769402 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021493814 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: + + +12:25:12 + +Event: UserEvent +Privilege: user,all +Exten: h +Context: from-internal +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +AccountCode: +Source: 78162769402 +Destination: 989021493814 +DestinationContext: from-internal +CallerID: "" <78162769402> +Channel: PJSIP/10 +DestinationChannel: PJSIP/rt_769402-00001208 +LastApplication: Dial +LastData: PJSIP/+79021493814@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 29 +BillableSeconds: 13 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491482.10205 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021493814 +ConnectedLineName: CID +Language: ru +Priority: 1 +Uniqueid: 1724491482.10205 +Linkedid: 1724491482.10205 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10231 + + +12:25:14 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/12-00001209 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: DIALEDPEERNUMBER +Value: 16/sip +Hint: PJSIP/16&Custom +Status: 1 +StatusText: InUse +Device: PJSIP/16 +State: INUSE +DestChannel: PJSIP/16-0000120a +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 16 +DestCallerIDName: Каб. 4 +DestConnectedLineNum: 12 +DestConnectedLineName: Регистратура_1 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: +DestPriority: 1 +DestUniqueid: 1724491504.10208 +DestLinkedid: 1724491504.10207 +DialStatus: ANSWER + + +12:25:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: e8eccd45-6566-4926-98ce-da1d49a9ccc4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID +Value: 22b2d91a-61bf-41b1-8a95-acdd7fc5d6e7 + + +12:25:19 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/12-00001209 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x2fe54132 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491519.202872 +SentRTP: 1785641464 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x7d1aa4ce +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37819 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:25:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-d +Exten: +Priority: 1 +Uniqueid: 1724491504.10208 +Linkedid: 1724491504.10207 +Variable: RTPAUDIOQOSRTTBRIDGED +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:25:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: ANSWEREDTIME +Value: 6 +BridgeUniqueid: e8eccd45-6566-4926-98ce-da1d49a9ccc4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:25:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_PRIORITY +Value: 3 + + +12:25:20 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/12-00001209 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:25:20 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: e8eccd45-6566-4926-98ce-da1d49a9ccc4 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/16-0000120a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:25:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000017; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; +Hint: PJSIP/16&Custom +Status: 0 +StatusText: Idle +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/16 +State: NOT_INUSE +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +12:25:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001209 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +12:25:20 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/12 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724491504.10207 +Linkedid: 1724491504.10207 +Variable: RTPAUDIOQOSMES +Value: 1 +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Source: 12 +Destination: 16 +DestinationContext: ext-local +CallerID: "Регистратура_1" <12> +DestinationChannel: PJSIP/16-0000120a +LastApplication: Dial +LastData: PJSIP/16/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 15 +BillableSeconds: 6 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491504.10207 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10233 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989095652583 +Priority: 1 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491540.1 +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-0000120b + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:25:40 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491540.10209 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989095652583 +Priority: 2 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989095652583 +Application: Gosub +AppData: sub-record-check,s,1(out,989095652583,dontcare) + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724491540.10209 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724491540.10209 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: __CALLFILENAME +Value: out-989095652583-10-20240824-122540-1724491540.10209 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989095652583-10-20240824-122540-1724491540.10209 + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989095652583-10-20240824-122540-1724491540.10209.wav + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989095652583 +Priority: 7 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540. +Variable: MOHCLASS +Value: default +Extension: 989095652583 +Application: Set +AppData: MOHCLASS=default + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989095652583 +Priority: 11 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_EXTEN +Value: 989095652583 +Extension: 989095652583 +Application: Macro +AppData: dialout-trunk,6,+79095652583,,off + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79095652583 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79095652583 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79095652583) + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Extension: s +Application: Dial +AppData: PJSIP/+79095652583@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79095652583^989095652583^6^1724491540^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: PROGRESSTIME +Value: + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +Variable: __REC_STATUS +Value: RECORDING + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +Variable: __DAY +Value: 24 + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:25:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:25:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724491540.1 +Linkedid: 1724491540.10209 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:25:40 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989095652583 +Priority: 1 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000120c +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989095652583 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491540.10210 +DestLinkedid: 1724491540.10209 +DialString: +79095652583@rt_769402 + + +12:25:40 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: INUSE +Exten: s +Context: macro-dialout-trunk +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 28 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: RINGTIME_MS +Value: 310 +DestChannel: PJSIP/rt_769402-0000120c +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989095652583 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989095652583 +DestPriority: 1 +DestUniqueid: 1724491540.10210 +DestLinkedid: 1724491540.10209 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:25:45 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-0000120b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: PROGRESSTIME_MS +Value: 5200 +DestChannel: PJSIP/rt_769402-0000120c +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989095652583 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989095652583 +DestPriority: 1 +DestUniqueid: 1724491540.10210 +DestLinkedid: 1724491540.10209 +DialStatus: PROGRESS + + +12:25:50 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989095652583 +Priority: 1 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0f929df3 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491550.606565 +SentRTP: 1724531544 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xaa571d56 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 2501 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:26:00 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989095652583 +Priority: 1 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0f929df3 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491560.606582 +SentRTP: 1724611544 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0xaa571d56 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3001 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:26:10 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989095652583 +Priority: 1 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0f929df3 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491570.606767 +SentRTP: 1724691544 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0xaa571d56 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3501 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:26:15 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989095652583 +Priority: 1 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0f929df3 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491575.608315 +SentRTP: 1724731544 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0xaa571d56 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3751 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 19 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:26:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989095652583 +Priority: 1 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +Variable: LOCAL(AR +Value: + + +12:26:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: +Device: PJSIP/rt_769402 +State: INUSE + + +12:26:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +Variable: BRIDGEPEER +Value: PJSIP/10-0000120b +DestChannel: PJSIP/rt_769402-0000120c +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989095652583 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724491540.10210 +DestLinkedid: 1724491540.10209 +DialStatus: ANSWER +BridgeUniqueid: 4127b6b3-8635-409b-9b7d-2e0553e78005 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:26:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: BRIDGEPVTCALLID +Value: 3619cfe1-340e-4b69-ad62-bd6adb1b638b + + +12:26:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989095652583 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491540.10210 +Linkedid: 1724491540.10209 +Variable: RTPAUDIOQOSJITTERBRIDGED +Value: minrxjitter=000.000125;maxrxjitter=000.001875;avgrxjitter=000.001398;stdevrxjitter=000.000200;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +12:26:18 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/10-0000120b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000200; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Source: 78162769402 +Destination: 989095652583 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000120c +LastApplication: Dial +LastData: PJSIP/+79095652583@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-0 + + +12:26:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: DIALEDTIME +Value: 38 +BridgeUniqueid: 4127b6b3-8635-409b-9b7d-2e0553e78005 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +12:26:18 + +Event: SoftHangupRequest +Privilege: call,all +Channel: PJSIP/10-0000120b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_PRIORITY +Value: +BridgeUniqueid: 4127b6b3-8635-409b-9b7d-2e0553e78005 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:26:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989095652583 +CallerIDName: +ConnectedLineNum: 989095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 4127b6b3-8635-409b-9b7d-2e0553e78005 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:26:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +12:26:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Cause: 16 +Cause-txt: Normal Clearing + + +12:26:18 + +Event: UserEvent +Privilege: user,all +Device: PJSIP/10 +State: NOT_INUSE +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989095652583 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491540.10209 +Linkedid: 1724491540.10209 +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10235 + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989216972243 +Priority: 1 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: 989216972243 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: TOUCH_MONITOR +Value: +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724491590.10211 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: +Value: 10-0000120d +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-0000120d + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10-0000120d +Variable: MACRO_DEPTH +Value: 1 + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724491590.10 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: AMPUSER +Value: 10 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: DB_RESULT +Value: 10 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 21 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DIAL_OPTIONS=HhTtr + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регист +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) +Variable: DB_RESULT +Value: ru + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: Set +AppData: CALLERID(name)=Регистратура_3 +Variable: MACRO_DEPTH +Value: 1 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: ARG1 +Value: + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Got +AppData: sub-record-check,s,1(out,989216972243,dontcare) + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __MONTH +Value: 08 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: __MON_FMT +Value: wav + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 4 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) +Variable: RECMODE +Value: yes + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: LOCAL(ARGC) +Value: 3 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491590.10211 +Linkedid: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/out-989216972243-10-20240824-122630-1724491590.10211.wav,abi(), +Variable: __CALLFILENAME +Value: out-989216972243-10-20240824-122630-1724491590.10211 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: recordcheck +Application: Return +AppData: +Variable: __REC_STATUS +Value: RECORDING + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: ARG1 +Value: +Extension: out +Application: Return +AppData: + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989216972243 +Priority: 7 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: 989216972243 +Application: Set +AppData: _CALLERIDNAMEINTERNAL=Регистратура_3 +Variable: MOHCLASS +Value: default + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989216972243 +Priority: 11 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: 989216972243 +Application: Macro +AppData: dialout-trunk,6,+79216972243,,off +Variable: MACRO_CONTEXT +Value: from-internal + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?chanfull + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: 10 + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 6 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10-0000120d +Variable: MACRO_DEPTH +Value: 2 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590. +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-o +Exten: s +Priority: 13 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: ExecIf +AppData: 0?Hangup() +Variable: MACRO_DEPTH +Value: 2 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 20 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> +Extension: s +Application: Set +AppData: USEROUTCID="SecretyDolgoletiya" <79217365096> + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:26:30 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-cal +Exten: s +Priority: 32 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)=78162769402) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 36 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=prohib_passed_screen) + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 41 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: Set +AppData: CDR(outbound_cnam)= +Variable: MACRO_DEPTH +Value: 2 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: OUTNUM +Value: +79216972243 +Extension: s +Application: Set +AppData: OUTNUM=+79216972243 + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) +Variable: MACRO_DEPTH +Value: 1 + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: ARG1 +Value: 6 +Extension: s +Application: MacroExit +AppData: + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79216972243 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79216972243) + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/+79216972243@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79216972243^989216972243^6^1724491590^^78162769402) + + +12:26:30 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +Variable: PROGRESSTIME_MS +Value: + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +Variable: __RECORD_ID +Value: PJSIP/10-0000120d + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +Variable: __DIAL_OPTIONS +Value: HhTtr + + +12:26:30 + +Event: VarSet +Privilege: dialplan, +Channel: PJSIP/rt_769402-0000120e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: SIPHEADERKEYS +Value: Alert-Info +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 7 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 1?Set(PJSIP_HEADER(remove,Alert-Info)=) + + +12:26:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +Extension: s +Application: While +AppData: 0 +Variable: func-apply +Value: + + +12:26:30 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000120e +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989216972243 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491590.10212 +DestLinkedid: 1724491590.10211 +DialString: +79216972243@rt_769402 + + +12:26:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989216972243 +Priority: 1 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +Extension: 989216972243 +Application: AppDial +AppData: (Outgoing Line) + + +12:26:30 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: RINGTIME_MS +Value: 342 +Device: PJSIP/10 +State: INUSE +DestChannel: PJSIP/rt_769402-0000120e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989216972243 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989216972243 +DestPriority: 1 +DestUniqueid: 1724491590.10212 +DestLinkedid: 1724491590.10211 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:26:31 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-0000120d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: PROGRESSTIME_MS +Value: 922 +DestChannel: PJSIP/rt_769402-0000120e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989216972243 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989216972243 +DestPriority: 1 +DestUniqueid: 1724491590.10212 +DestLinkedid: 1724491590.10211 +DialStatus: PROGRESS + + +12:26:36 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989216972243 +Priority: 1 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x708b6f6f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491596.718219 +SentRTP: 1724531424 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x81f17a68 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 14193 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:26:46 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989216972243 +Priority: 1 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x708b6f6f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491606.718258 +SentRTP: 1724611424 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x81f17a68 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 14692 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 16 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:26:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989216972243 +Priority: 1 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:26:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +Variable: ARG3 +Value: +Extension: s +Application: Return +AppData: + + +12:26:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-0000120e +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989216972243 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724491590.10212 +DestLinkedid: 1724491590.10211 +DialStatus: ANSWER +BridgeUniqueid: 6e9cab88-d67d-4401-bc3a-5c955abd565f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:26:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: BRIDGEPVTCALLID +Value: 402b1df2-5e82-4b70-96b0-ecbbacbe5403 + + +12:26:51 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x708b6f6f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491611.719159 +SentRTP: 1724651424 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0x81f17a68 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 14943 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:26:56 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x708b6f6f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491616.718040 +SentRTP: 1724691424 +SentPackets: 1250 +SentOctets: 200000 +Report0SourceSSRC: 0x81f17a68 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 15193 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:27:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491590.10212 +Linkedid: 1724491590.10211 +Variable: RTPAUDIOQOSJITTERBRIDGED +Value: minrxjitter=000.000125;maxrxjitter=000.001625;avgrxjitter=000.001219;stdevrxjitter=000.000128;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +12:27:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000128; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:27:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 28 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: DIALSTATUS +Value: ANSWER +BridgeUniqueid: 6e9cab88-d67d-4401-bc3a-5c955abd565f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:27:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:27:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000120e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216972243 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 172449 +Linkedid: 1724491590.10211 +Variable: RTPAUDIOQOS +Value: ssrc=1888186223;themssrc=2180086376;lp=0;rxjitter=0.000000;rxcount=1544;txjitter=0.001375;txcount=1541;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 6e9cab88-d67d-4401-bc3a-5c955abd565f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:27:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangup +Exten: s +Priority: 4 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10236 +Extension: s +Application: Hangup +AppData: + + +12:27:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000120d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Source: 78162769402 +Destination: 989216972243 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000120e +LastApplication: Dial +LastData: PJSIP/+79216972243@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 32 +BillableSeconds: 13 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491590.10211 +UserField: + + +12:27:02 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216972243 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491590.10211 +Linkedid: 1724491590.10211 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10237 + + +12:27:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:27:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724491636.10213 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:27:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724491636. +Linkedid: 1724491636.10213 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-122716 +Variable: __YEAR +Value: 2024 + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +12:27:17 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/Megafon_3 +State: INUSE +EventTV: 2024-08-24T12 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 10 +SessionID: 5ab33d91-7429532e30555e6d2a910080f0808080@KX-TGP600RU +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.12/5080 +Challenge: +UsingPassword: 1 +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633690099 +Priority: 1 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Extension: 989633690099 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 172449 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-us +Exten: s +Priority: 6 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-u +Exten: s +Priority: 9 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10 +Variable: MACRO_DEPTH +Value: 1 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=10) + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_ +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратур +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?report + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=) +Variable: MACRO_DEPTH +Value: 1 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 26 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: s +Application: ExecIf +AppData: 1?Set(GROUP(concurrency_limit)=10) +Variable: MACRO_DEPTH +Value: 1 + + +12:27:17 + +Event: Newexten +Privilege: dial +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CDR(cnam)=Регистратура_3 + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633690099 +Priority: 2 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: 98 +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record +Exten: s +Priority: 3 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: NOW +Value: 1724491636 +Extension: s +Application: Set +AppData: NOW=1724491636 + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: s +Priority: 8 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: __FROMEXTEN +Value: 10 +Extension: s +Application: Set +AppData: __FROMEXTEN=10 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 1 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: out +Application: NoOp +AppData: Outbound Recording Check from 10 to 989633690099 + + +12:27:17 + +Event: Newexten +Privilege: dialplan, +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 5 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: out +Application: Gosub +AppData: recordcheck,1(yes,out,989633690099) +Variable: LOCAL(ARGC) +Value: 3 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=10) +Variable: __REC_POLICY_MODE +Value: YES + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=PJSIP/10-00001210 +Variable: __MIXMON_ID +Value: + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: recordcheck +Application: Return +AppData: +Variable: GOSUB_RETV +Value: + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633690099 +Priority: 5 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: 989633690099 +Application: Set +AppData: _ROUTEID=1 +Variable: _ROUTEID +Value: 1 + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Р +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633690099 +Priority: 9 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: _EMAILNOTIFICATION +Value: FALSE +Extension: 989633690099 +Application: Set +AppData: _EMAILNOTIFICATION=FALSE + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633690099 +Priority: 11 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: ARG3 +Value: +Extension: 989633690099 +Application: Macro +AppData: dialout-trunk,6,+79633690099,,off + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 3 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: GosubIf +AppData: 0?sub-pincheck,s,1() + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 6 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_NUMBER=+79633690099 + + +12:27:17 + +Event: VarSet +Privilege: di +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 9 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: DIAL_TRUNK_OPTIONS +Value: T +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=T + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_CONTEXT +Value: macro-dialo + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 3 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: all + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 7 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: HOTDESKEXTEN +Value: 10 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 11 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: s +Application: Set +AppData: ALLOWTHISROUTE=NO +Variable: ALLOWTHISROUTE +Value: NO + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 30 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)=78162769402) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 34 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)=10) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 38 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=prohib_passed_screen) +Variable: MACRO_DEPTH +Value: 2 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 41 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_PRIORITY +Value: 11 +Extension: s +Application: Set +AppData: CDR(outbound_cnam)= + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 17 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=M(setmusic^default)T) +Variable: MACRO_DEPTH +Value: 1 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: s +Application: Macro +AppData: dialout-trunk-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 21 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?bypass,1 + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 23 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(name,i)=CID + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 27 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=) + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633690099 +ConnectedLineName: C +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: DIALEDTIME +Value: +Extension: s +Application: Dial +AppData: PJSIP/+79633690099@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79633690099^989633690099^6^1724491636^^78162769402) + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001211 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491636.10215 +Linkedid: 1724 +Variable: EMAILNOTIFICATION +Value: FALSE + + +12:27:17 + +Event: VarSet +Privilege: dialplan,al +Channel: PJSIP/rt_769402-00001211 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491636.10215 +Linkedid: 1724491636.10214 +Variable: __FROMEXTEN +Value: 10 + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001211 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633690099 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633690099 +Priority: 1 +Uniqueid: 1724491636.10215 +Linkedid: 1724491636.10214 +Variable: LOCAL(ARGC) +Value: 1 +Extension: 989633690099 +Application: AppDial +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001211 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633690099 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 17 +Linkedid: 1724491636.10214 +Extension: s +Application: While +AppData: 1 +Variable: func-apply-sipheaders_s_4 +Value: 0 + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001211 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633690099 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 12 +Uniqueid: 1724491636.10215 +Linkedid: 17244916 +Extension: s +Application: ExecIf +AppData: 0?Set(PJSIP_HEADER(add,Alert-Info)=unset) +Variable: sipheader +Value: unset + + +12:27:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001211 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633690099 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724491636.10215 +Linkedid: 1724491636.10214 +Variable: ARG1 +Value: +Extension: s +Application: Return +AppData: + + +12:27:17 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001211 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633690099 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-t +Exten: 989633690099 +Priority: 1 +Uniqueid: 1724491636.10215 +Linkedid: 1724491636.10214 +DestChannel: PJSIP/rt_769402-00001211 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989633690099 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491636.10215 +DestLinkedid: 1724491636.10214 +DialString: +79633690099@rt_769402 +Extension: 79217365096 +Application: Wait +AppData: 1 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:27:17 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: INUSE +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: RINGTIME_MS +Value: 385 +DestChannel: PJSIP/rt_769402-00001211 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989633690099 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989633690099 +DestPriority: 1 +DestUniqueid: 1724491636.10215 +DestLinkedid: 1724491636.10214 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 19 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: AGI +AppData: agi + + +12:27:18 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +CommandId: 1912661609 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:27:18 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +CommandId: 1416019932 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:27:18 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +CommandId: 1917734503 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +CommandId: 161172363 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724491636.102 +Linkedid: 1724491636.10213 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491636.10 +Linkedid: 1724491636.10213 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: AMPUSER +Value: 79116380137 +Extension: s +Application: Set +AppData: AMPUSER=79116380137 + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 791 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +12:27:18 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +12:27:18 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 791163 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:27:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +12:27:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724491647 +Variable: QUEUEJOINTIME +Value: + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491647.10216 +Linkedid: 1724491636.10213 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491647.10216 +Linkedid: 1724491636.10213 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491647.10216 +Linkedid: 1724491636.10213 +Variable: __REC_STATUS +Value: INITIALIZED + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: __FROM_DID +Value: 79217365096 + + +12:27:27 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ae4;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724491647.10216 +LocalOneLinkedid: 1724491636.10213 +LocalTwoChannel: Local/12@from-queue-00000ae4;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116380137 +LocalTwoCallerIDName: 79116380137 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491647.10218 +Linkedid: 1724491636.10213 +DestChannel: Local/12@from-queue-00000ae4;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724491647.10216 +DestLinkedid: 1724491636.10213 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QC_CONFIRM +Value: 0 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491647.10218 +Linkedid: 1724491636.10213 +Variable: __CALLEE_ACCOUNCODE +Value: + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724491647.10217 +Linkedid: 1 +Variable: QAGENT +Value: 12 +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: DB_RESULT +Value: 0 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: e +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: ARG2 +Value: 12 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724491647.10217 + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724491647.10217 +Linkedid: 1724491 +Variable: __FROMQUEUEEXTEN +Value: 79116380137 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: __MOHCLASS +Value: + + +12:27:27 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from +CID-CallingPres: 0 (Presentation + + +12:27:27 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000ae4;2 +LocalOneChannel: Local/13@from-queue-00000ae5;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724491647.10218 +LocalOneLinkedid: 1724491636.10213 +LocalTwoChannel: Local/13@from-queue-00000ae5;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116380137 +LocalTwoCallerIDName: 79116380137 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724491647.10219 +LocalTwoLinkedid: 1724491636.10213 +LocalOptimization: No +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000ae4;2 +DestChannel: Local/13@from-queue-00000ae5;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491647.10218 +DestLinkedid: 1724491636.10213 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 3 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: __FROMQ +Value: true +Extension: 13 +Application: GotoIf +AppData: 0?hangup + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: DB_RESULT +Value: EXT +Extension: 194 +Application: Goto +AppData: from-internal,13,1 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: +Linkedid: 1724491636.10213 +Variable: MACRO_EXTEN +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ae5;2 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: CHANEXTEN +Value: 13 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +12:27:27 + +Event: Newexte +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: Set +AppData: CALLERID(name)=79116380137 +Variable: MACRO_DEPTH +Value: 2 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491647.10218 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724491647 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724491647.10217 +Linkedid: 172 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) +Variable: MACRO_DEPTH +Value: 2 + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79116380137 + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 17 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724491647 + + +12:27:27 + +Event: VarSet +Privilege: dialpl +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-122727 + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724491647.10217 +Linkedid: 17 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: +Linkedid: 1724491636.10213 +Variable: LOCAL(ARG1) +Value: yes +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +12:27:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +12:27:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: RECFROMEXTEN +Value: 79116380137 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116380137) + + +12:27:27 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79116380137-20240824-122727-1724491647.10217.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-12-79116380137-20240824-122727-1724491647.10217.wav + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: DB_RESULT +Value: yes + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79116380137) + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79116380137-20240824-122727-1724491647.10219.wav,abi(), + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79116380137-20240824-122727-1724491647.10217.wav +Variable: MACRO_DEPTH +Value: 1 + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: dstring +Priority: 5 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724 +Linkedid: 1724491636.10213 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: THISDIAL +Value: PJSIP/13/sip + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724491647.10219 +Linkedid: 17 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 30 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:27:28 + +Event: Newexten +Privilege: dialplan,al +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724491647.10219 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 43 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(au + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491647. +Linkedid: 1724491636.10213 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: DEXTEN +Value: 12 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fro +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Ret + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstr +Priority: 14 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +12:27:28 + +Event: VarSet +Privilege: dial +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +12:27:28 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636. +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 45 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 1?godial + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +12:27:28 + +Event: VarSet +Privilege: dialplan +Channel: PJSIP/13-00001212 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Variable: DIALEDPEERNUMBER +Value: 13/sip + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Variable: __TIMESTR +Value: 20240824-122727 + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001212 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Variable: __RINGINGSENT +Value: TRUE + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001212 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491647.10221 +Linkedid: 1724491636.10213 +Variable: DIALEDPEERNUMBER +Value: 12/sip +Extension: s +Application: Return +AppData: + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-interna +Exten: s +Priority: 1 +Uniqueid: 1724491647.10221 +Linkedid: 1724491636.10213 +Variable: __TIMESTR +Value: 20240824-122727 + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491647.10221 +Linkedid: 1724491636.10213 +Variable: __SIGNORE +Value: TRUE + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491647.10221 +Linkedid: 1724491636.10213 +Variable: __MOHCLASS +Value: + + +12:27:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491647.10221 +Linkedid: 1724491636.10213 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:27:28 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724491647.10216 +Linkedid: 1724491636.10213 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/12-00001213 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116380137 +DestConnectedLineName: 79116380137 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491647.10221 +DestLinkedid: 1724491636.10213 +DialString: 12/sip + + +12:27:28 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +DestChannel: Local/13@from-queue-00000ae5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116380137 +DestConnectedLineName: 79116380137 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491647.10218 +DestLinkedid: 1724491636.10213 +DialStatus: RINGING +DialString: 13/sip +Device: Local/13@from-queue +State: INUSE + + +12:27:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME +Value: 2 + + +12:27:30 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +DestChannel: Local/12@from-queue-00000ae4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116380137 +DestConnectedLineName: 79116380137 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491647.10216 +DestLinkedid: 1724491636.10213 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:27:30 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/13-00001212 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING + + +12:27:30 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: RINGTIME_MS +Value: 3124 +DestChannel: Local/13@from-queue-00000ae5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116380137 +DestConnectedLineName: 79116380137 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491647.10218 +DestLinkedid: 1724491636.10213 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 420 +LastCall: 1724490065 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:27:36 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-00001212 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/13 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm +Hint: PJSIP/13&Custom +Status: 1 +StatusText: InUse +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n + + +12:27:36 + +Event: Newexten +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 420 +LastCall: 1724490065 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/13-00001212 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: MACRO_DEPTH +Value: 1 + + +12:27:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001212 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +12:27:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001212 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Ре +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +12:27:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001212 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +12:27:36 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000ae5;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724491647.10218 +Linkedid: 1724491636.10213 +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-00001212 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116380137 +DestConnectedLineName: 79116380137 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724491647.10220 +DestLinkedid: 1724491636.10213 +DialStatus: ANSWER +BridgeUniqueid: 8a1ce704-4840-4ac0-8858-0f5694ee5694 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +CID-CallingPres: 0 (Presenta + + +12:27:36 + +Event: QueueCallerLeave +Privilege: +Channel: Local/12@from-queue-00000ae4;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724491647.10216 +Linkedid: 1724491636.10213 +DestChannel: Local/12@from-queue-00000ae4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116380137 +DestConnectedLineName: 79116380137 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491647.10216 +DestLinkedid: 1724491636.10213 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE + + +12:27:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724491647.10218 +Linkedid: 1724491636.10213 +Variable: BRIDGEPEER +Value: PJSIP/Megafon_3-0000120f +DestChannel: Local/13@from-queue-00000ae5;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116380137 +DestConnectedLineName: 79116380137 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491647.10218 +DestLinkedid: 1724491636.10213 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 9 +RingTime: 8 +BridgeUniqueid: dec6b4a3-3b73-4132-9765-8c5fba29e5e8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: NOT_INUSE + + +12:27:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_EXTEN +Value: 12 +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +DestChannel: PJSIP/12-00001213 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116380137 +DestConnectedLineName: 79116380137 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724491647.10221 +DestLinkedid: 1724491636.10213 +DialStatus: CANCEL + + +12:27:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_CONTEXT +Value: + + +12:27:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724491647.10221 +Linkedid: 1724491636.10213 +Cause: 26 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: +Cause-txt: Answered elsewhere + + +12:27:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001212 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: 8a1ce704-4840-4ac0-8858-0f5694ee5694 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +12:27:36 + +Event: Cdr +Privilege: cdr,all +Channel: Local/12@from-queue-00000ae4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Source: 79116380137 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116380137" <79116380137> +DestinationChannel: PJSIP/12-00001213 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: + + +12:27:36 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724491647.10217 +Linkedid: 1724491636.10213 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10240 + + +12:27:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: DIALEDPEERNUMBER +Value: +79633690099@rt_769402 + + +12:27:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001211 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633690099 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 2 +Uniqueid: 1724491636.10215 +Linkedid: 1724491636.10214 +Variable: LOCAL(ARGC) +Value: 6 +Extension: s +Application: NoOp +AppData: email notifications disabled..exiting. + + +12:27:47 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/10-00001210 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: GOSUB_RETVAL +Value: +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-00001211 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989633690099 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724491636.10215 +DestLinkedid: 1724491636.10214 +DialStatus: ANSWER + + +12:27:47 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: d1793a58-c683-4c19-88fe-d9cd3a67c790 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/10-00001210 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 98792078-4675-4308-b75a-872ea54b3523 + + +12:27:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: RTPAUDIOQOSBRIDGED +Value: ssrc=1984827189;themssrc=1363187408;lp=0;rxjitter=0.000000;rxcount=920;txjitter=0.000750;txcount=941;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +12:27:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116380137 +ConnectedLineName: 79116380137 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724491647.10220 +Linkedid: 1724491636.10213 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000330; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:27:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: ANSWEREDTIME +Value: 18 +BridgeUniqueid: 8a1ce704-4840-4ac0-8858-0f5694ee5694 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:27:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 7 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_CONTEXT +Value: ext-local + + +12:27:55 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: MACRO_PRIORITY +Value: + + +12:27:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +12:27:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae5;2 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724491647.10219 +Linkedid: 1724491636.10213 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000330; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +12:27:55 + +Event: UserEvent +Privilege: user,al +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Cause-txt: Normal Clearing +DestChannel: Local/13@from-queue-00000ae5;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116380137 +DestConnectedLineName: 79116380137 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491647.10218 +DestLinkedid: 1724491636.10213 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 9 +TalkTime: 19 +Reason: agent + + +12:27:55 + +Event: SoftHangupRequest +Privilege: call,all +AccountCode: +Source: 79116380137 +Destination: 13 +DestinationContext: ext-local +CallerID: "79116380137" <79116380137> +Channel: PJSIP/Megafon_3-0000120f +DestinationChannel: PJSIP/13-00001212 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 27 +BillableSeconds: 18 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491647.10219 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Рег +Language: ru +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: BRIDGEPEER +Value: 1 +BridgeUniqueid: dec6b4a3-3b73-4132-9765-8c5fba29e5e8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10242 + + +12:27:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +12:27:55 + +Event: VarSet +Privilege: dialplan,all +Device: Local/13@from-queue +State: NOT_INUSE +Channel: PJSIP/Megafon_3-0000120f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Extension: s +Application: Hangup +AppData: +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 421 +LastCall: 1724491675 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: MACRO_PRIORITY +Value: + + +12:27:55 + +Event: Cdr +Privilege: cdr,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116380137 +CallerIDName: 79116380137 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724491636.10213 +Linkedid: 1724491636.10213 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79116380137 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116380137" <79116380137> +DestinationChannel: Local/12@from-queue-00000ae4;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 19 +BillableSeconds: 19 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724491636.10213 +UserField: +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10243 + + +12:27:55 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/MEGAFON_3 +ActionID: 10244 + + +12:27:57 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001211 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633690099 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491636.10215 +Linkedid: 1724491636.10214 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x696d483f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491677.655317 +SentRTP: 1724571504 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0x8609df7c +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 57831 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:28:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001211 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:28:01 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-00001210 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: d1793a58-c683-4c19-88fe-d9cd3a67c790 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:28:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_EXTEN +Value: + + +12:28:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:28:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: MACRO_CONTEXT +Value: +BridgeUniqueid: d1793a58-c683-4c19-88fe-d9cd3a67c790 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: Hangup +AppData: + + +12:28:01 + +Event: Var +Privilege: dialplan,all +Channel: PJSIP/10-00001210 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.002125;avgrxjitter=000.001084;stdevrxjitter=000.000274;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +12:28:01 + +Event: UserEvent +Privilege: user,al +Channel: PJSIP/10-00001210 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633690099 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724491636.10214 +Linkedid: 1724491636.10214 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000274; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Source: 78162769402 +Destination: 989633690099 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001211 +LastApplication: Dial +LastData: PJSIP/+79633690099@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 44 +BillableSeconds: 14 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491636.10214 +UserField: +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:28:01 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10246 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082926739 +Priority: 1 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: 989082926739 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, +Variable: ARG3 +Value: + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491738.10222 +Linkedid: 1724491 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: AMPUSER +Value: 10 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=10) + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: Set +AppData: AMPUSERCID=10 +Variable: AMPUSERCID +Value: 10 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) +Variable: MACRO_DEPTH +Value: 1 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:28:58 + +Event: VarSet +Privilege: +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: Set +AppData: CDR(cnum)=10 +Variable: MACRO_DEPTH +Value: 1 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082926739 +Priority: 2 +Uniqueid: 1724491738.10 +Linkedid: 1724491738.10222 +Variable: LOCAL(ARG2) +Value: 989082926739 +Extension: 989082926739 +Application: Gosub +AppData: sub-record-check,s,1(out,989082926739,dontcare) + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __MONTH=08 + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: s +Priority: 10 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: NoOp +AppData: Recordings initialized +Variable: __MON_FMT +Value: wav + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 2 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: out +Application: Set +AppData: RECMODE=yes +Variable: RECMODE +Value: yes + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: recor +Application: Goto +AppData: yes +Variable: LOCAL(ARGC) +Value: 3 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989082926739-10-20240824-122858-1724491738.10222 +Variable: __CALLFILENAME +Value: out-989082926739-10-20240824-122858-1724491738.10 + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: out +Application: Return +AppData: +Variable: ARG3 +Value: + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082926739 +Priority: 6 +Uniqueid: 1724491738.10222 +Linkedid: 172449 +Variable: _ROUTENAME +Value: Megafon +Extension: 989082926739 +Application: Set +AppData: MOHCLASS=default + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082926739 +Priority: 11 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: 989082926739 +Application: Macro +AppData: dialout-trunk,6,+79082926739,,off +Variable: _NODEST +Value: + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: ARG1 +Value: 6 +Extension: s +Application: Macro +AppData: outbound-callerid,6 + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: ExecIf +AppData: 0? +Variable: MACRO_DEPTH +Value: 2 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 17244917 +Linkedid: 1724491738.10222 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 12 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: ExecIf +AppData: 0?Set(ALLOWTHISROUTE=YES) +Variable: MACRO_DEPTH +Value: 2 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратур +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?normcid + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: Set +AppData: TRUNKOUTCID=7816 +Variable: MACRO_DEPTH +Value: 2 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: Set +AppData: TIOHIDE=no +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TIOHIDE +Value: no + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 +Variable: MACRO_DEPTH +Value: 2 + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 14 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() +Variable: MACRO_DEPTH +Value: 1 + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 18 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +12:28:58 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79082926739) + + +12:28:58 + +Event: VarSet +Privilege: d +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HASH(__SIPHEADERS,Alert-Info)=unset + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: RINGTIME_MS +Value: + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +Variable: ROUTEID +Value: 1 + + +12:28:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +Variable: __MONTH +Value: 08 + + +12:28:58 + +Event: Newexten +Privilege: +Channel: PJSIP/rt_769402-00001215 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: +Priority: 5 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +Variable: sipheader +Value: unset +Extension: s +Application: Set +AppData: sipheader=unset + + +12:28:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +Extension: s +Application: EndWhile +AppData: +Variable: sipkey +Value: + + +12:28:58 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001215 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989082926739 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491738.10223 +DestLinkedid: 1724491738.10222 +DialString: +79082926739@rt_769402 + + +12:28:59 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: 989082926739 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Variable: RINGTIME_MS +Value: 716 +DestChannel: PJSIP/rt_769402-00001215 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989082926739 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989082926739 +DestPriority: 1 +DestUniqueid: 1724491738.10223 +DestLinkedid: 1724491738.10222 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:29:00 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: PROGRESSTIME_MS +Value: 2427 +DestChannel: PJSIP/rt_769402-00001215 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989082926739 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989082926739 +DestPriority: 1 +DestUniqueid: 1724491738.10223 +DestLinkedid: 1724491738.10222 +DialStatus: PROGRESS + + +12:29:05 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989082926739 +Priority: 1 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x769c3855 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491745.907477 +SentRTP: 1724531576 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x865e1bb8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 57904 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:29:10 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989082926739 +Priority: 1 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x769c3855 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491750.907154 +SentRTP: 1724571576 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0x865e1bb8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 58155 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:29:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: DIALEDPEERNUMBER +Value: +79082926739@rt_769402 + + +12:29:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 2 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +Variable: LOCAL(ARGC) +Value: 6 +Extension: s +Application: NoOp +AppData: email notifications disabled..exiting. + + +12:29:15 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/10-00001214 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: GOSUB_RETVAL +Value: +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-00001215 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989082926739 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724491738.10223 +DestLinkedid: 1724491738.10222 +DialStatus: ANSWER + + +12:29:15 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 119ab0ac-b60c-49bd-a85e-bcb1a1862253 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/10-00001214 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 92eddde9-3d14-4d0d-b86b-dad9f4f185b8 + + +12:29:15 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x769c3855 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491755.906865 +SentRTP: 1724611576 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x865e1bb8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 58404 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:29:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:29:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724491759.10224 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:29:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724491759. +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-122919 +Variable: __YEAR +Value: 2024 + + +12:29:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:29:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +12:29:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:29:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +12:29:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +12:29:19 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +12:29:19 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +12:29:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:29:20 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x769c3855 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491760.907550 +SentRTP: 1724651736 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0x865e1bb8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 58654 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: 2 +Application: AGI +AppData: agi + + +12:29:21 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +CommandId: 459997245 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:29:21 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +CommandId: 1271670777 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:29:21 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +CommandId: 1082718876 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724491759.102 +Linkedid: 1724491759.10224 +CommandId: 1625483397 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +12:29:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724491759.1 +Linkedid: 1724491759.10224 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491759. +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +12:29:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: AMPUSER +Value: 79082920116 +Extension: s +Application: Set +AppData: AMPUSER=79082920116 + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +12:29:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +12:29:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +12:29:21 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +12:29:21 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +12:29:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7908 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +12:29:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +12:29:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +12:29:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +12:29:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:29:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3- +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +12:29:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +12:29:25 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x769c3855 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491765.906512 +SentRTP: 1724691576 +SentPackets: 1250 +SentOctets: 200000 +Report0SourceSSRC: 0x865e1bb8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 58904 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 11 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +Variable: BRIDGEPEER +Value: +Source: 78162769402 +Destination: 989082926739 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001215 +LastApplication: Dial +LastData: PJSIP/+79082926739@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 31 +BillableSeconds: 15 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491738.10222 +UserField: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 119ab0ac-b60c-49bd-a85e-bcb1a1862253 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: PJSIP/10-00001214 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: ARG2 +Value: + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001215 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082926739 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491738.10223 +Linkedid: 1724491738.10222 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000. +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 119ab0ac-b60c-49bd-a85e-bcb1a1862253 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001214 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE + + +12:29:30 + +Event: UserEvent +Privilege: us +Channel: PJSIP/10-00001214 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082926739 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491738.10222 +Linkedid: 1724491738.10222 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000171; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +BridgeUniqueid: 119ab0ac-b60c-49bd-a85e-bcb1a1862253 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:29:30 + +Event: RTCPSent +Privilege: reporting,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-00001216 +ActionID: 10248 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x40e31af1 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491770.219644 +SentRTP: 80072 +SentPackets: 475 +SentOctets: 76000 +Report0SourceSSRC: 0x00020232 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 1657 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 1 +Report0LSR: 363673681 +Report0DLSR: 3.0040 + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: 194 +Application: QueueLog +AppData: 194,1724491759.10224,NONE,DID,79217365096 + + +12:29:30 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:29:30 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491759.10 +Linkedid: 1724491759.10224 +Variable: QUEUEJOINTIME +Value: 1724491770 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491770.10225 +Linkedid: 1724491759.10224 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491770.10225 +Linkedid: 1724491759.10224 +Variable: __RINGINGSENT +Value: TRUE + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491770.10225 +Linkedid: 1724491759.10224 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: __FROMQUEUEEXTEN +Value: 79082920116 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: __TIMESTR +Value: 20240824-122919 + + +12:29:30 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000ae6;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724491770.10225 +LocalOneLinkedid: 1724491759.10224 +LocalTwoChannel: Local/12@from-queue-00000ae6;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082920116 +LocalTwoCallerIDName: 79082920116 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724491770.10226 +LocalTwoLinkedid: 1724491759.10224 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000ae6;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: en +DestAccountCode: + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491770.10227 +Linkedid: 1724491759.10224 +DestChannel: Local/12@from-queue-00000ae6;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724491770.10225 +DestLinkedid: 1724491759.10224 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491770.10227 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491770.10227 +Linkedid: 1724491759.10224 +Variable: __DIRECTION +Value: + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001216 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: __MON_FMT +Value: wav + + +12:29:30 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000ae7;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724491770.10227 +LocalOneLinkedid: 1724491759.10224 +LocalTwoChannel: Local/13@from-queue-00000ae7;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082920116 +LocalTwoCallerIDName: 79082920116 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724491770.10228 +LocalTwoLinkedid: 1724491759.10224 +LocalOptimization: No + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724491770.10229 +Linkedid: 1724491759.10224 +DestChannel: Local/13@from-queue-00000ae7;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724491770.10227 +DestLinkedid: 1724491759.10224 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724491770.10229 +Linkedid: 1724491759.10224 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724491770.10229 +Linkedid: 1724491759.10224 +Variable: __DAY +Value: 24 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +12:29:30 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: __FROM_DID +Value: 79217365096 + + +12:29:30 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000ae8;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724491770.10229 +LocalOneLinkedid: 1724491759.10224 +LocalTwoChannel: Local/10@from-queue-00000ae8;2 + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 3 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +DestChannel: Local/10@from-queue-00000ae8;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724491770.10229 +DestLinkedid: 1724491759.10224 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 13 +Application: GotoIf +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: DB_RESULT +Value: EXTENSION +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 7908292011 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: QAGENT +Value: 10 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ae6;2 + + +12:29:30 + +Event: New +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: 10 +Application: GotoIf +AppData: 0?hangup +Variable: MACRO_DEPTH +Value: 2 + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: +Priority: 7 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: AMPUSER=79082920116 +Variable: MACRO_DEPTH +Value: 2 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: 194 +Application: Goto +AppData: fr +Variable: MACRO_DEPTH +Value: 2 + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: s +Priority: 31 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: __CALLEE_ACCOUNCODE +Value: + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000ae7;2 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 7908292 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000ae7;2 + + +12:29:30 + +Event: Newexten +Privilege: dialpl +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-c +Exten: s +Priority: 31 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79082920116 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: CALLERID(name)=79082920116 +Variable: MACRO_DEPTH +Value: 2 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: AMPUSER=79082920116 +Variable: MACRO_DEPTH +Value: 2 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: s +Application: +AppData: Macro Depth is 2 +Variable: MACRO_DEPTH +Value: 2 + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 32 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79082920116 + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 +Variable: MACRO_DEPTH +Value: 1 + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +12:29:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +12:29:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-122930 +Variable: MACRO_DEPTH +Value: 1 + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7908292011 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Record + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARGC) +Value: 3 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: __REC_POLICY_MODE +Value: YES + + +12:29:31 + +Event: Newexten +Privilege: dialplan, +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79082920116) +Variable: MACRO_DEPTH +Value: 1 + + +12:29:31 + +Event: VarS +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79082920116-20240824-122930-1724491770.10228.wav +Variable: MACRO_DEPTH +Value: 1 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: THISDIAL +Value: PJSIP/13/sip + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Aler + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +12:29:31 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 172449177 +Linkedid: 1724491759.10224 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001217 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491770.10231 +Linkedid: 1724491759.10224 +Variable: __PICKUPMARK +Value: 13 + + +12:29:31 + +Event: VarSet +Privilege: +Channel: PJSIP/13-00001217 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491770.10231 +Linkedid: 1724491759.10224 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001216 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001217 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724491770.10231 +Linkedid: 1724491759.10224 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001217 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724491770.10231 +Linkedid: 1724491759.10224 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-si +Value: 0 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491770.10225 +Linkedid: 1724491759.10224 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 790829201 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724491770 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordc +Priority: 1 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: __CALLFILENAME +Value: external-12-79082920116-20240824-122930-1724491770.10226 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79082920116-20240824-122930-1724491770.10226 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491770.10230 +Linkedid: 172449 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79082920116-20240824-122930-1724491770.10226.wav,abi(), + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: __EXTTOCALL +Value: 10 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000ae6;2 +Variable: MACRO_DEPTH +Value: 1 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstrin +Priority: 2 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: dstring +Application: Set +AppData: DEVICES=12 +Variable: DEVICES +Value: 12 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +12:29:31 + +Event: VarSet +Privilege: +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: dstring +Application: ExecIf +AppData: 0?Return +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724491770. +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 172449 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +12:29:31 + +Event: Newexten +Privilege: di +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 790 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79082920116-20240824-122930-1724491770.10230.wav,abi(), + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: rec +Priority: 22 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000ae8;2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 1?godial + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: DIALEDPEERNAME +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491770.10232 +Linkedid: 1724491759.10224 +Variable: DIALEDPEERNUMBER +Value: 12/sip + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001218 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491770.10232 +Linkedid: 1724491759.10224 +Variable: __TIMESTR +Value: 20240824-122930 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001218 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491770.10232 +Linkedid: 1724491759.10224 +Variable: __QC_CONFIRM +Value: 0 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001218 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491770.10232 +Linkedid: 1724491759.10224 +Variable: __RINGINGSENT +Value: TRUE + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001218 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491770.10232 +Linkedid: 1724491759.10224 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:29:31 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-queue-00000ae7;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-00001217 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491770.10231 +DestLinkedid: 1724491759.10224 +DialString: 13/sip + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: recordcheck +Priority: 25 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.102 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: DB_RESULT +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: DSTRING +Value: PJSIP/10/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: PJSIP/10/sip + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724491770.10230 +Linkedid: 17244917 +Extension: s +Application: GotoIf +AppData: 0?skiptrace +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.10230 +Linkedid: +Variable: ANSWEREDTIME +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +12:29:31 + +Event: VarSet +Privilege: dialplan, +Channel: PJSIP/10-00001219 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Variable: __CWIGNORE +Value: TRUE + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001219 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Variable: __MONTH +Value: 08 + + +12:29:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001219 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Variable: __FROM_DID +Value: 79217365096 + + +12:29:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001219 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082920116 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +12:29:31 + +Event: DialBegin +Privilege: call,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-00001218 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491770.10232 +DestLinkedid: 1724491759.10224 +DialString: 12/sip + + +12:29:31 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +DestChannel: Local/12@from-queue-00000ae6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491770.10225 +DestLinkedid: 1724491759.10224 +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE + + +12:29:31 + +Event: DeviceStateChange +Privilege: call,all +Device: Local/10@from-queue +State: INUSE + + +12:29:33 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 55 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 3401 +DestChannel: PJSIP/13-00001217 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724491770.10231 +DestLinkedid: 1724491759.10224 +DialStatus: RINGING +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +12:29:34 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 421 +LastCall: 1724491675 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +DestChannel: Local/13@from-queue-00000ae7;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491770.10227 +DestLinkedid: 1724491759.10224 +DialStatus: RINGING + + +12:29:34 + +Event: DialState +Privilege: call,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3985 +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +DestChannel: PJSIP/10-00001219 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724491770.10233 +DestLinkedid: +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:29:35 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 4577 +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +DestChannel: Local/12@from-queue-00000ae6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491770.10225 +DestLinkedid: +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:29:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001219 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/10 +State: INUSE + + +12:29:35 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/10-00001219 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082920116 +ConnectedLineName: 790829 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: CFIGNORE= +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 305 +LastCall: 1724490617 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: CFIGNORE +Value: + + +12:29:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001219 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +12:29:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001219 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001216)= + + +12:29:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001219 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +12:29:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001219 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Extension: s +Application: AppDial +AppData: (Out +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-00001219 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724491770.10233 +DestLinkedid: 1724491759.10224 +DialStatus: ANSWER +BridgeUniqueid: 209fbddf-da51-4046-89a3-87ecd0574d28 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:29:36 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: 209fbddf-da51-4046-89a3-87ecd0574d28 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: BRIDGEPVTCALLID +Value: c6b9d423-4c8f-4145-87c8-f5e1dbfd20f4 +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000ae8;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 + + +12:29:36 + +Event: DialEnd +Privilege: call,all +Channel: +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724491770.10225 +Linkedid: 1724491759.10224 +DestChannel: Local/12@from-queue-00000ae6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491770.10225 +DestLinkedid: 1724491759.10224 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:29:36 + +Event: QueueCallerLeave +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/12-00001218 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724491770.10232 +DestLinkedid: 1724491759.10224 +DialStatus: CANCEL +Variable: MACRO_DEPTH +Value: 1 +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 + + +12:29:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.1 +Linkedid: 1724491759.10224 +Variable: MACRO_PRIORITY +Value: 3 +DestChannel: Local/10@from-queue-00000ae8;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491770.10229 +DestLinkedid: 1724491759.10224 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +RingTime: 5 + + +12:29:36 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Variable: MACRO_PRIORITY +Value: +BridgeUniqueid: 18f5e7a5-8123-42df-828e-0b36ea7e350b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 + + +12:29:36 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 17 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 18f5e7a5-8123-42df-828e-0b36ea7e350b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:29:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 4 +Uniqueid: 1724491770.10226 +Linkedid: 1724491759.10224 +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/12 +State: NOT_INUSE +Variable: MACRO_DEPTH +Value: 0 +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: + + +12:29:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: ARG1 +Value: novm +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79082920116 +Destination: 12 +DestinationContext: ext-local +CallerID: "79082920116" <79082920116> +DestinationChannel: PJSIP/12-00001218 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724491770.10226 +UserField: +Device: Local/12@from-queue +State: NOT_INUSE +DestChannel: PJSIP/13-00001217 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082920116 +DestConnectedLineName: 79082920116 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724491770.10231 +DestLinkedid: 1724491759.10224 +DialStatus: CANCEL + + +12:29:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000ae8;1 +BridgeUniqueid: 18f5e7a5-8123-42df-828e-0b36ea7e350b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +12:29:36 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000ae7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +12:29:36 + +Event: Cdr +Privilege: cdr,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Source: 79082920116 +Destination: 13 +DestinationContext: ext-local +CallerID: "79082920116" <79082920116> + + +12:29:36 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724491770.10228 +Linkedid: 1724491759.10224 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: re +ActionID: 10249 + + +12:29:36 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/13 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724491770.10231 +Linkedid: 1724491759.10224 +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10254 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 421 +LastCall: 1724491675 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:29:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:29:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:29:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-122939 +Variable: __YEAR +Value: 2024 + + +12:29:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:29:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +12:29:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724491779.10234 +Linkedid: 17244917 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:29:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 78162769402 +Application: Set +AppData: __FROM_DID=78162769402 +Variable: __FROM_DID +Value: 78162769402 + + +12:29:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 3 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +12:29:39 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:29:39 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 2 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +12:29:39 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +CommandId: 1475524965 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:29:40 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +CommandId: 1501440177 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:29:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +CommandId: 333579215 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +12:29:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-use +Exten: s +Priority: 3 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 790956 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: AMPUSER +Value: 79095652583 +Extension: s +Application: Set +AppData: AMPUSER=79095652583 + + +12:29:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +12:29:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +12:29:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-u +Exten: s +Priority: 50 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: CALLERID(name)=79095652583 +Variable: MACRO_DEPTH +Value: 1 + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:29:40 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 194 +Application: Answer +AppData: +Device: PJSIP/rt_769402 +State: INUSE + + +12:29:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: __FROMQUEUEEXTEN +Value: 79095652583 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset + + +12:29:40 + +Event: +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/rt_769402-0000121a)=TRUE + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 790 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 20 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 194 +Application: Set +AppData: VQ_RETRY= +Variable: QRETRY +Value: + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: +Priority: 30 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: QPOSITION +Value: + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +12:29:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +12:29:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +12:29:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +12:29:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 44 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Extension: 194 +Application: Set +AppData: VQ_AANNOUNCE= +Variable: VQ_AANNOUNCE +Value: + + +12:29:49 + +Event: Newext +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 50 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: VQ_MAXWAIT +Value: +Extension: 194 +Application: Set +AppData: VQ_MAXWAIT= + + +12:29:49 + +Event: NewCaller +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491789.10235 +Linkedid: 1724491779.10234 +Variable: QUEUEJOINTIME +Value: 1724491789 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491789.10235 +Linkedid: 1724491779.10234 +Variable: __FROMQUEUEEXTEN +Value: 79095652583 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491789.10235 +Linkedid: 1724491779.10234 +Variable: __YEAR +Value: 2024 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: __RVOL_MODE +Value: dontcare + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:29:49 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:29:49 + +Event: NewCallerid +Privilege: call,all +LocalOneChannel: Local/12@from-queue-00000ae9;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724491789.10235 +LocalOneLinkedid: 1724491779.10234 +LocalTwoChannel: Local/12@from-queue-00000ae9;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79095652583 +LocalTwoCallerIDName: 79095652583 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724491789.10236 +LocalTwoLinkedid: 1724491779.10234 +Context: from-queue +Exten: 13 +LocalOptimization: No +Channel: Local/13@from-queue-00000aea;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Priority: 1 +Uniqueid: 1724491789.10237 +Linkedid: 1724491779.10234 +DestChannel: Local/12@from-queue-00000ae9;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724491789.10235 +DestLinkedid: 1724491779.10234 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 172 +Linkedid: 1724491779.10234 +Variable: __FROMQUEUEEXTEN +Value: 79095652583 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491789.10237 +Linkedid: 1724491779.10234 +Variable: __YEAR +Value: 2024 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: __QCONTEXT +Value: 0 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: __MOHCLASS +Value: + + +12:29:49 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: __DIRECTION +Value: +Extension: 12 +Application: Set +AppData: QAGENT=12 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:29:49 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: __FROMQ +Value: true +Extension: 12 +Application: GotoIf +AppData: 0?hangup +LocalOneChannel: Local/13@from-queue-00000aea;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724491789.10237 +LocalOneLinkedid: 1724491779.10234 +LocalTwoChannel: Local/13@from-queue-00000aea;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79095652583 +LocalTwoCallerIDName: 79095652583 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724491789.10238 +LocalTwoLinkedid: 1724491779.10234 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000aea;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: 79095652583 +DestConnectedLineName: 79095652583 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491789.10237 +DestLinkedid: 1724491779.10234 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=17244917 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000ae9;2 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79095652583 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724491789.10238 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79095652583 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: DB_RESULT +Value: EXTENSION +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-e +Exten: s +Priority: 1 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79095652583 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-u +Exten: s +Priority: 9 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-us +Exten: s +Priority: 51 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: s +Application: GotoIf +AppData: 0?cnum +Variable: MACRO_DEPTH +Value: 2 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 +Variable: MACRO_DEPTH +Value: 1 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79095652583 and 12 + + +12:29:49 + +Event: Newexten +Privilege: dia +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: LOCAL(ARGC) +Value: 3 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: MACRO_DEPTH +Value: 1 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79095652583) + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: s +Exten: recordcheck +Priority: 24 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79095652583-20240824-122949-1724491789.10236.wav +Variable: MACRO_DEPTH +Value: 1 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MA +Value: +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip +Variable: THISDIAL +Value: PJSIP/12/sip + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724491789.1023 +Linkedid: 1724491779.10234 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: __EXTTOCALL +Value: 13 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: LOCAL(ARG1) +Value: exten + + +12:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724491789 + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_EXTEN +Value: s + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: ANSWEREDTIME_MS +Value: + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: re + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Ex +AppData: Starting recording + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79095652583-20240824-122949-1724491789.10238.wav,abi(), + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: reco +Priority: 25 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 1 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: DEXTEN +Value: 13 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: DEVICES=13 + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-o +Exten: dstring +Priority: 14 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491789.10238 +Linkedid: 17244 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000121b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491789.10239 +Linkedid: 1724491779.10234 +Variable: DIALEDPEERNUMBER +Value: 12/sip + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000121b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491789.10239 +Linkedid: 1724491779.10234 +Variable: __TIMESTR +Value: 20240824-122949 + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000121b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491789.10239 +Linkedid: 1724491779.10234 +Variable: __QC_CONFIRM +Value: 0 + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000121b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491789.10239 +Linkedid: 1724491779.10234 +Variable: __MOHCLASS +Value: + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000121b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491789.10239 +Linkedid: 1724491779.10234 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Extension: s +Application: Return +AppData: +Variable: __KEEPCID +Value: TRUE + + +12:29:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from +Exten: s +Priority: 1 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Variable: __YEAR +Value: 2024 + + +12:29:50 + +Event: VarSet +Privilege: +Channel: PJSIP/13-0000121c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Variable: __RVOL_MODE +Value: dontcare + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Variable: __DIRECTION +Value: + + +12:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +12:29:50 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/12@from-queue-00000ae9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79095652583 +DestConnectedLineName: 79095652583 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491789.10239 +DestLinkedid: 1724491779.10234 +DialString: 12/sip + + +12:29:50 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +DestChannel: Local/13@from-queue-00000aea;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79095652583 +DestConnectedLineName: 79095652583 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491789.10237 +DestLinkedid: 1724491779.10234 +DialString: 13/sip +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x40e31af1 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491790.219822 +SentRTP: 1724603136 +SentPackets: 1450 +SentOctets: 231847 +Report0SourceSSRC: 0x00020232 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 2657 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 2 +Report0LSR: 364983156 +Report0DLSR: 3.0240 + + +12:29:52 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 55 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 2964 +DestChannel: PJSIP/13-0000121c +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79095652583 +DestConnectedLineName: 79095652583 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724491789.10240 +DestLinkedid: 1724491779.10234 +DialStatus: RINGING +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +12:29:52 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 421 +LastCall: 1724491675 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +DestChannel: Local/13@from-queue-00000aea;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79095652583 +DestConnectedLineName: 79095652583 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491789.10237 +DestLinkedid: 1724491779.10234 +DialStatus: RINGING + + +12:29:52 + +Event: DeviceStateChange +Privilege: call,all +Exten: 12 +Context: from-internal +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing +Channel: PJSIP/12-0000121b +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724491789.10239 +Linkedid: 1724491779.10234 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING + + +12:29:52 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: RINGTIME_MS +Value: 3371 +DestChannel: Local/12@from-queue-00000ae9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79095652583 +DestConnectedLineName: 79095652583 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491789.10235 +DestLinkedid: 1724491779.10234 +DialStatus: RINGING + + +12:29:54 + +Event: DeviceSta +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +12:29:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 790956 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: CFIGNORE= +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 421 +LastCall: 1724491675 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: CFIGNORE +Value: + + +12:29:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +12:29:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/rt_769402-0000121a)= + + +12:29:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +12:29:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 172 +Linkedid: 1724491779.10234 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-0000121c +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79095652583 +DestConnectedLineName: 79095652583 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724491789.10240 +DestLinkedid: 1724491779.10234 +DialStatus: ANSWER +BridgeUniqueid: ccf45125-e50a-4b25-af7b-a726084e4b72 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: INUSE + + +12:29:54 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: ccf45125-e50a-4b25-af7b-a726084e4b72 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: BRIDGEPVTCALLID +Value: e42a8daf-5760-4c3f-b45c-56701a6cc2cb +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000aea;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79095652583 +DestConnectedLineName: 79095652583 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491789.10237 +DestLinkedid: + + +12:29:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +DestChannel: Local/12@from-queue-00000ae9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79095652583 +DestConnectedLineName: 79095652583 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724491789.10235 +DestLinkedid: 1724491779.10234 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QU + + +12:29:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +DestChannel: PJSIP/12-0000121b +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79095652583 +DestConnectedLineName: 79095652583 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724491789.10239 +DestLinkedid: 1724491779.10234 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 5 +RingTime: 4 +BridgeUniqueid: e192e77c-4ceb-48e6-95fe-c3f4e37e97f6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL +Variable: ARG3 +Value: 0 + + +12:29:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_EXTEN +Value: + + +12:29:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae9;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:29:54 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724491789.10237 +Linkedid: 1724491779.10234 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/12 +State: NOT_INUSE +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Cause: 26 +Cause-txt: Answered elsewhere +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: e192e77c-4ceb-48e6-95fe-c3f4e37e97f6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +12:29:54 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491789.10236 +Linkedid: 1724491779.10234 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: + + +12:29:54 + +Event: UserEvent +Privilege: user,all +Device: Local/12@from-queue +State: NOT_INUSE +AccountCode: +Source: 79095652583 +Destination: 12 +DestinationContext: ext-local +CallerID: "79095652583" <79095652583> +Channel: LOCAL/12@FROM-QUEUE +DestinationChannel: PJSIP/12-0000121b +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 4 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724491789.10236 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10257 + + +12:29:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724491770.10229 +Linkedid: 1724491759.10224 +Variable: RTPAUDIOQOSJITTERBRIDGED +Value: minrxjitter=000.000000;maxrxjitter=000.001125;avgrxjitter=000.000163;stdevrxjitter=000.000150;mintxjitter=000.000375;maxtxjitter=738.120125;avgtxjitter=105.446500;stdevtxjitter=258.287926; + + +12:29:57 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000150; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=076.027097; stdevtxmes=022.872967; + + +12:29:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: MACRO_EXTEN +Value: h +BridgeUniqueid: 18f5e7a5-8123-42df-828e-0b36ea7e350b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:29:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001216 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +12:29:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 18f5e7a5-8123-42df-828e-0b36ea7e350b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE + + +12:29:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000ae8;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_ +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:29:57 + +Event: VarSet +Privilege: dia +Channel: PJSIP/Megafon_3-00001216 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491759.10224 +Linkedid: 1724491759.10224 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:29:57 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 79082920116 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082920116" <79082920116> +Channel: PJS +DestinationChannel: Local/10@from-queue-00000ae8;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 27 +BillableSeconds: 27 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491759.10224 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Device: PJSIP/Megafon_3 +State: NOT_INUSE +BridgeUniqueid: 209fbddf-da51-4046-89a3-87ecd0574d28 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +12:29:57 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082920116 +ConnectedLineName: 79082920116 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724491770.10233 +Linkedid: 1724491759.10224 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory + + +12:29:57 + +Event: UserEvent +Privilege: user,all +AccountCode: +Source: 79082920116 +Destination: 10 +DestinationContext: ext-local +CallerID: "79082920116" <79082920116> +Channel: LOCAL/10@FROM-QUEUE +DestinationChannel: PJSIP/10-00001219 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 27 +BillableSeconds: 21 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491770.10230 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082920116 +CallerIDName: 79082920116 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724491770.10230 +Linkedid: 1724491759.10224 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10261 + + +12:30:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116140358 +Priority: 1 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491819.1 +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-0000121d + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:30:20 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491819.10241 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116140358 +Priority: 2 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116140358 +Application: Gosub +AppData: sub-record-check,s,1(out,989116140358,dontcare) + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724491819.10241 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724491819.10241 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: __CALLFILENAME +Value: out-989116140358-10-20240824-123019-1724491819.10241 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116140358-10-20240824-123019-1724491819.10241 + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989116140358-10-20240824-123019-1724491819.10241.wav + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116140358 +Priority: 7 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819. +Variable: MOHCLASS +Value: default +Extension: 989116140358 +Application: Set +AppData: MOHCLASS=default + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116140358 +Priority: 11 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_EXTEN +Value: 989116140358 +Extension: 989116140358 +Application: Macro +AppData: dialout-trunk,6,+79116140358,,off + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79116140358 + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79116140358 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116140358) + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Extension: s +Application: Dial +AppData: PJSIP/+79116140358@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116140358^989116140358^6^1724491819^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: PROGRESSTIME +Value: + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491819.10242 +Linkedid: 1724491819.10241 +Variable: __REC_STATUS +Value: RECORDING + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491819.10242 +Linkedid: 1724491819.10241 +Variable: __DAY +Value: 24 + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116140358 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491819.10242 +Linkedid: 1724491819.10241 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:30:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116140358 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724491819.10242 +Linkedid: 1724491819.10241 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:30:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116140358 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724491819.1 +Linkedid: 1724491819.10241 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:30:20 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000121e +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116140358 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491819.10242 +DestLinkedid: 1724491819.10241 +DialString: +79116140358@rt_769402 + + +12:30:20 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116140358 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116140358 +Priority: 1 +Uniqueid: 1724491819.10242 +Linkedid: 1724491819.10241 +Extension: 989116140358 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/rt_769402 +State: RINGINUSE + + +12:30:20 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: RINGTIME_MS +Value: 376 +DestChannel: PJSIP/rt_769402-0000121e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116140358 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116140358 +DestPriority: 1 +DestUniqueid: 1724491819.10242 +DestLinkedid: 1724491819.10241 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Device: PJSIP/10 +State: INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:30:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:30:22 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: ccf45125-e50a-4b25-af7b-a726084e4b72 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:30:22 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: ccf45125-e50a-4b25-af7b-a726084e4b72 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 55 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: ARG2 +Value: 13 + + +12:30:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 55 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: ARG5 +Value: + + +12:30:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:30:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095652583 +ConnectedLineName: 79095652583 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724491789.10240 +Linkedid: 1724491779.10234 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +12:30:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 422 +LastCall: 1724491822 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_CONTEXT +Value: + + +12:30:22 + +Event: DeviceStat +Privilege: call,all +Channel: Local/13@from-queue-00000aea;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724491789.10238 +Linkedid: 1724491779.10234 +Cause: 16 +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10262 +Variable: BRIDGEPEER +BridgeUniqueid: e192e77c-4ceb-48e6-95fe-c3f4e37e97f6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing +Source: 79095652583 +Destination: 13 +DestinationContext: ext-local +CallerID: "79095652583" <79095652583> +DestinationChannel: PJSIP/13-0000121c +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 32 +BillableSeconds: 28 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491789.10238 +UserField: +Device: Local/13@from-queue +State: NOT_INUSE + + +12:30:22 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: e192e77c-4ceb-48e6-95fe-c3f4e37e97f6 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779. +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +12:30:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 172 +Linkedid: 1724491779.10234 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10264 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 5 +TalkTime: 28 +Reason: agent + + +12:30:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; +Source: 79095652583 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79095652583" <79095652583> +DestinationChannel: Local/12@from-queue-00000ae9;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 14 +BillableSeconds: 14 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724491779.10234 +UserField: + + +12:30:22 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/rt_769402-0000121a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095652583 +CallerIDName: 79095652583 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724491779.10234 +Linkedid: 1724491779.10234 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: RINGING +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10265 +Source: 79095652583 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79095652583" <79095652583> +DestinationChannel: Local/13@from-queue-00000aea;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 32 +BillableSeconds: 32 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491779.10234 +UserField: + + +12:30:23 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: PROGRESSTIME_MS +Value: 3049 +DestChannel: PJSIP/rt_769402-0000121e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116140358 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116140358 +DestPriority: 1 +DestUniqueid: 1724491819.10242 +DestLinkedid: 1724491819.10241 +DialStatus: PROGRESS + + +12:30:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: DIALEDPEERNAME +Value: PJSIP/rt_769402-0000121e + + +12:30:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116140358 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 2 +Uniqueid: 1724491 +Linkedid: 1724491819.10241 +Variable: LOCAL(ARGC) +Value: 6 +Extension: s +Application: GotoIf +AppData: 0?sendEmail + + +12:30:29 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/10-0000121d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-0000121e +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116140358 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk + + +12:30:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +BridgeUniqueid: 064bbd46-d874-48f4-9474-6d14d2bd7c13 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 302e8e65-245b-4ea4-a76b-25af618a1b76 + + +12:30:33 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116140358 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491819.10242 +Linkedid: 1724491819.10241 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5a3556fa +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491833.248959 +SentRTP: 1724571816 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xb33f826a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 15310 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 20 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:30:38 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116140358 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491819.10242 +Linkedid: 1724491819.10241 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5a3556fa +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491838.240689 +SentRTP: 1724611816 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0xb33f826a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 15559 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:30:43 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116140358 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491819.10242 +Linkedid: 1724491819.10241 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5a3556fa +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491843.240509 +SentRTP: 1724651816 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0xb33f826a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 15809 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:30:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:30:44 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-0000121d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 064bbd46-d874-48f4-9474-6d14d2bd7c13 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:30:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_EXTEN +Value: + + +12:30:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000121d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:30:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000121e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116140358 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491819.10242 +Linkedid: 1724491819.10241 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: 064bbd46-d874-48f4-9474-6d14d2bd7c13 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:30:44 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10-0000121d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Variable: RTPAUDIOQOS +Value: 1 +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcal + + +12:30:44 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-0000121d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116140358 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724491819.10241 +Linkedid: 1724491819.10241 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000175; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Source: 78162769402 +Destination: 989116140358 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000121e +LastApplication: Dial +LastData: PJSIP/+79116140358@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 24 +BillableSeconds: 15 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491819.10241 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:30:44 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10267 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989216955624 +Priority: 1 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491851.1 +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-0000121f + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:30:51 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491851.10243 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989216955624 +Priority: 2 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989216955624 +Application: Gosub +AppData: sub-record-check,s,1(out,989216955624,dontcare) + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724491851.10243 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724491851.10243 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: __CALLFILENAME +Value: out-989216955624-13-20240824-123051-1724491851.10243 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989216955624-13-20240824-123051-1724491851.10243 + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989216955624-13-20240824-123051-1724491851.10243.wav + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989216955624 +Priority: 7 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851. +Variable: MOHCLASS +Value: default +Extension: 989216955624 +Application: Set +AppData: MOHCLASS=default + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989216955624 +Priority: 11 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_EXTEN +Value: 989216955624 +Extension: 989216955624 +Application: Macro +AppData: dialout-trunk,6,+79216955624,,off + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) +Variable: DB_RESULT +Value: + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79216955624 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79216955624 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79216955624) + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Extension: s +Application: Dial +AppData: PJSIP/+79216955624@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79216955624^989216955624^6^1724491851^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: PROGRESSTIME +Value: + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +Variable: __REC_STATUS +Value: RECORDING + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +Variable: __DAY +Value: 24 + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:30:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:30:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724491851.1 +Linkedid: 1724491851.10243 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:30:51 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001220 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989216955624 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491851.10244 +DestLinkedid: 1724491851.10243 +DialString: +79216955624@rt_769402 + + +12:30:51 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989216955624 +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +Extension: 989216955624 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/rt_769402 +State: RINGING + + +12:30:51 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 28 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: RINGTIME_MS +Value: 345 +DestChannel: PJSIP/rt_769402-00001220 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989216955624 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989216955624 +DestPriority: 1 +DestUniqueid: 1724491851.10244 +DestLinkedid: 1724491851.10243 +DialStatus: RINGING +Device: PJSIP/13 +State: INUSE +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 422 +LastCall: 1724491822 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:30:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: PROGRESSTIME_MS +Value: 3863 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116350250 +Priority: 1 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491859.1 +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-00001221 + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:30:59 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491859.10245 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116350250 +Priority: 2 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116350250 +Application: Gosub +AppData: sub-record-check,s,1(out,989116350250,dontcare) + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724491859.10245 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724491859.10245 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: __CALLFILENAME +Value: out-989116350250-10-20240824-123059-1724491859.10245 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116350250-10-20240824-123059-1724491859.10245 + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989116350250-10-20240824-123059-1724491859.10245.wav + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116350250 +Priority: 7 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859. +Variable: MOHCLASS +Value: default +Extension: 989116350250 +Application: Set +AppData: MOHCLASS=default + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116350250 +Priority: 11 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_EXTEN +Value: 989116350250 +Extension: 989116350250 +Application: Macro +AppData: dialout-trunk,6,+79116350250,,off + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79116350250 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79116350250 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116350250) + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Extension: s +Application: Dial +AppData: PJSIP/+79116350250@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116350250^989116350250^6^1724491859^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: PROGRESSTIME +Value: + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +Variable: __REC_STATUS +Value: RECORDING + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +Variable: __DAY +Value: 24 + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116350250 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:30:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116350250 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:30:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116350250 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724491859.1 +Linkedid: 1724491859.10245 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:30:59 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116350250 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116350250 +Priority: 1 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001222 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116350250 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491859.10246 +DestLinkedid: 1724491859.10245 +DialString: +79116350250@rt_769402 + + +12:30:59 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dialout-trunk +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 28 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: RINGTIME_MS +Value: 336 +Device: PJSIP/10 +State: INUSE +DestChannel: PJSIP/rt_769402-00001222 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116350250 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116350250 +DestPriority: 1 +DestUniqueid: 1724491859.10246 +DestLinkedid: 1724491859.10245 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:31:00 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989216955624 +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x06c44e54 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491860.399880 +SentRTP: 1724531848 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xd0e10bf4 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 43676 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:31:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: PROGRESSTIME_MS +Value: 2191 + + +12:31:05 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989216955624 +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x06c44e54 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491865.401010 +SentRTP: 1724571848 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xd0e10bf4 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 43926 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 23 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:31:10 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/rt_769402 +State: RINGINUSE +Channel: PJSIP/rt_769402-00001222 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116350250 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116350 +Priority: 1 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +Variable: LOCAL(ARG5) +Value: + + +12:31:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116350250 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:31:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116350250 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +Variable: BRIDGEPEER +Value: PJSIP/10-00001221 +DestChannel: PJSIP/rt_769402-00001222 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116350250 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724491859.10246 +DestLinkedid: 1724491859.10245 +DialStatus: ANSWER +BridgeUniqueid: bbffc02d-1da3-43ea-801c-d2182d3c16b2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:31:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: BRIDGEPVTCALLID +Value: 9de6ed25-0a85-4a80-9ab3-77042c0c4bb2 + + +12:31:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989216955624 +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:31:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:31:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +Variable: BRIDGEPEER +Value: PJSIP/13-0000121f +DestChannel: PJSIP/rt_769402-00001220 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989216955624 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724491851.10244 +DestLinkedid: 1724491851.10243 +DialStatus: ANSWER +BridgeUniqueid: c3c4f902-bde4-4288-bbbb-e6daeca8581e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:31:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: BRIDGEPVTCALLID +Value: 7fccd428-0362-41e2-a929-81e51bc84b45 + + +12:31:15 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x06c44e54 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491875.400595 +SentRTP: 1724651688 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0xd0e10bf4 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 44426 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:31:16 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116350250 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x32f1967c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491876.672950 +SentRTP: 1724611696 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x97782ebb +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 60174 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 15 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:31:20 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x06c44e54 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491880.402091 +SentRTP: 1724691848 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0xd0e10bf4 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 44675 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 30 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:31:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116350250 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +Variable: RTPAUDIOQOSJITTERBRIDGED +Value: minrxjitter=000.000125;maxrxjitter=000.001625;avgrxjitter=000.001142;stdevrxjitter=000.000171;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +12:31:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000171; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:31:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 28 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: DIALSTATUS +Value: ANSWER +BridgeUniqueid: bbffc02d-1da3-43ea-801c-d2182d3c16b2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:31:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001221 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:31:25 + +Event: Newexten +Privilege: dialpla +Channel: PJSIP/10-00001221 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: bbffc02d-1da3-43ea-801c-d2182d3c16b2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:31:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001222 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116350250 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491859.10246 +Linkedid: 1724491859.10245 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.00 + + +12:31:25 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/10-00001221 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000171; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Source: 78162769402 +Destination: 989116350250 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001222 + + +12:31:25 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116350250 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724491859.10245 +Linkedid: 1724491859.10245 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10269 + + +12:31:30 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x06c44e54 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491890.400594 +SentRTP: 1724771848 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0xd0e10bf4 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 45176 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 11 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:31:35 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x06c44e54 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491895.400150 +SentRTP: 1724811848 +SentPackets: 2001 +SentOctets: 320160 +Report0SourceSSRC: 0xd0e10bf4 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 45426 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 22 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:31:40 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001220 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x06c44e54 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724491900.400445 +SentRTP: 1724851848 +SentPackets: 2251 +SentOctets: 360160 +Report0SourceSSRC: 0xd0e10bf4 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 45676 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 11 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:31:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001625;avgrxjitter=000.001017;stdevrxjitter=000.000187;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +12:31:43 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/13-0000121f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000187; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:31:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: DIALEDTIME_MS +Value: 52449 +BridgeUniqueid: c3c4f902-bde4-4288-bbbb-e6daeca8581e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:31:43 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13-0000121f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall +BridgeUniqueid: c3c4f902-bde4-4288-bbbb-e6daeca8581e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-00001220 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989216955624 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491851.10244 +Linkedid: 1724491851.10243 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289 + + +12:31:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000121f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE + + +12:31:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; +Source: 78162769402 +Destination: 989216955624 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001220 +LastApplication: Dial +LastData: PJSIP/+79216955624@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 52 +BillableSeconds: 31 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491851.10243 +UserField: + + +12:31:43 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/13 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989216955624 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724491851.10243 +Linkedid: 1724491851.10243 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 422 +LastCall: 1724491822 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10271 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524856902 +Priority: 1 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724491988.1 +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-00001223 + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:33:08 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724491988.10247 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524856902 +Priority: 2 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989524856902 +Application: Gosub +AppData: sub-record-check,s,1(out,989524856902,dontcare) + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724491988.10247 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724491988.10247 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: __CALLFILENAME +Value: out-989524856902-10-20240824-123308-1724491988.10247 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989524856902-10-20240824-123308-1724491988.10247 + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989524856902-10-20240824-123308-1724491988.10247.wav + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524856902 +Priority: 7 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988. +Variable: MOHCLASS +Value: default +Extension: 989524856902 +Application: Set +AppData: MOHCLASS=default + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524856902 +Priority: 11 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_EXTEN +Value: 989524856902 +Extension: 989524856902 +Application: Macro +AppData: dialout-trunk,6,+79524856902,,off + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79524856902 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79524856902 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79524856902) + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Extension: s +Application: Dial +AppData: PJSIP/+79524856902@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79524856902^989524856902^6^1724491988^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: PROGRESSTIME +Value: + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Variable: __REC_STATUS +Value: RECORDING + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Variable: __DAY +Value: 24 + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:33:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:33:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724491988.1 +Linkedid: 1724491988.10247 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:33:08 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001224 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989524856902 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724491988.10248 +DestLinkedid: 1724491988.10247 +DialString: +79524856902@rt_769402 + + +12:33:08 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Extension: 989524856902 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse + + +12:33:08 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001223 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: RINGTIME_MS +Value: 357 +DestChannel: PJSIP/rt_769402-00001224 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989524856902 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989524856902 +DestPriority: 1 +DestUniqueid: 1724491988.10248 +DestLinkedid: 1724491988.10247 +DialStatus: RINGING +Device: PJSIP/10 +State: INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:33:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524856902 +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Variable: LOCAL(AR +Value: + + +12:33:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 172449198 +Linkedid: 1724491988.10247 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:33:23 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Variable: GOSUB_RETVAL +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:33:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +BridgeUniqueid: 444919ac-48f4-4c6e-a64f-50fe662d883e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 67a8600e-d42a532e48792c2c2e910080f0808080@KX-TGP600RU + + +12:33:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: BRIDGEPVTCALLID +Value: cc1e8ffa-a263-4a32-b384-161bc1c5404b + + +12:33:29 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x02b056a9 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492009.102433 +SentRTP: 1724531840 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0xc65f2f26 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25145 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 13 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:33:34 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x02b056a9 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492014.102762 +SentRTP: 1724571840 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0xc65f2f26 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25395 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:33:39 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x02b056a9 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492019.102395 +SentRTP: 1724611840 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0xc65f2f26 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25645 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 14 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Variable: RTPAUDIOQOSJITTERBRIDGED +Value: minrxjitter=000.000000;maxrxjitter=000.002000;avgrxjitter=000.001189;stdevrxjitter=000.000195;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +12:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000195; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 28 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: DIALSTATUS +Value: ANSWER +BridgeUniqueid: 444919ac-48f4-4c6e-a64f-50fe662d883e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724491988.10247 +Linkedid: 1724491988.10247 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:33:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 444919ac-48f4-4c6e-a64f-50fe662d883e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Source: 78162769402 +Destination: 989524856902 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001224 +LastApplication: Dial +LastData: PJSIP/+79524856902@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 34 +BillableSeconds: 18 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724491988.10247 +UserField: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +12:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001223 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524856902 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.005000;avgrxjitter=000.001274;stdevrxjitter=000.000707;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Extension: s +Application: Hangup +AppData: + + +12:33:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001224 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000707; mintxmes= + + +12:33:42 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/RT_769402 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524856902 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724491988.10248 +Linkedid: 1724491988.10247 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10273 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021479067 +Priority: 1 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: ARG3 +Value: +Extension: 989021479067 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEP +Value: + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492039.1 +Linkedid: 1724492039.10249 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: MACRO_DEPTH +Value: 1 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724492 +Linkedid: 1724492039.10249 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-us +Exten: s +Priority: 14 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=10) +Variable: MACRO_DEPTH +Value: 1 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 +Variable: MACRO_DEPTH +Value: 1 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 26 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(GROUP(concurrency_limit)=10) + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: CDR(cnum)=10 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021479067 +Priority: 2 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: 989021479067 +Application: Gosub +AppData: sub-record-check,s,1(out,989021479067,dontcare) +Variable: L +Value: out + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724492039.10249 +Linkedid: 17 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724492039.102 +Linkedid: 1724492039.10249 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989021479067-10-20240824-123359-1724492039.10249 +Variable: RECFROMEXTEN +Value: 10 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __RECORD_ID +Value: PJSIP/10-00001225 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: out +Application: Return +AppData: +Variable: ARGC +Value: + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021479067 +Priority: 6 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: _ROUTENAME +Value: Megafon +Extension: 989021479067 +Application: Set +AppData: MOHCLA + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021479067 +Priority: 10 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: _NODEST +Value: +Extension: 989021479067 +Application: Set +AppData: _NODEST= + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 6 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_NUMBER=+79021479067 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=) + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 12 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALLOWTHISROUTE=YES) + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: MACRO_DEPTH +Value: 2 + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 22 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(EMERGENCYCID=) + + +12:33:59 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 39 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=prohib_passed_screen) + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 14 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 18 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) +Variable: MACRO_DEPTH +Value: 1 + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: s +Application: Macro +AppData: dialout-trunk-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 21 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: GotoIf +AppData: 0?bypass,1 + + +12:33:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +79021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 23 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(name,i)=CID + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 27 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: __~HASH~SIPHEADERS~Alert-Info~ +Value: unset +Extension: s +Application: Set +AppData: HASH(__SIPHEADERS,Alert-Info)=unset + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: s +Application: Dial +AppData: PJSIP/+79021479067@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79021479067^989021479067^6^1724492039^^78162769402) +Variable: RINGTIME +Value: + + +12:33:59 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001226 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +Variable: ROUTENAME +Value: Megafon + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001226 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +Variable: __YEAR +Value: 2024 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_76940 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021479067 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +Variable: LOCAL(ARGC) +Value: 1 +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001226 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021479067 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 5 +Uniqueid: 1724492039.1025 +Linkedid: 1724492039.10249 +Extension: s +Application: Set +AppData: sipheader=unset +Variable: WHILE_0 +Value: func-apply-sipheaders,s,4 + + +12:33:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001226 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021479067 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 12 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +Extension: s +Application: EndWhile +AppData: +Variable: END_WHILE_0 +Value: func-apply-sipheaders,s,13 + + +12:34:00 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-00001226 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989021479067 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492039.10250 +DestLinkedid: 1724492039.10249 +DialString: + + +12:34:00 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 + + +12:34:00 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dialout-trunk +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/10-00001225 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 28 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Extension: 989021479067 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 355 +Device: PJSIP/10 +State: INUSE +DestChannel: PJSIP/rt_769402-00001226 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989021479067 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989021479067 +DestPriority: 1 +DestUniqueid: 1724492039.10250 +DestLinkedid: 1724492039.10249 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:34:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001226 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021479067 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989021479067 +Priority: 1 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:34:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001226 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021479067 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:34:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001226 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021479067 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +Variable: BRIDGEPEER +Value: PJSIP/10-00001225 +DestChannel: PJSIP/rt_769402-00001226 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989021479067 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724492039.10250 +DestLinkedid: 1724492039.10249 +DialStatus: ANSWER +BridgeUniqueid: feb0293a-b9ac-4d2a-9f48-2f05432b1a3b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:34:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: BRIDGEPVTCALLID +Value: 96bd9ebc-9715-4c42-a316-1a063efaefaa + + +12:34:14 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001226 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021479067 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x50d6efef +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492054.793705 +SentRTP: 1724532048 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x3ed621b3 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 6175 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 18 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:34:19 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001226 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021479067 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x50d6efef +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492059.793666 +SentRTP: 1724571888 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0x3ed621b3 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 6425 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:34:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 781627694 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:34:28 + +Event: Va +Privilege: call,all +Channel: PJSIP/rt_769402-00001226 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021479067 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492039.10250 +Linkedid: 1724492039.10249 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: feb0293a-b9ac-4d2a-9f48-2f05432b1a3b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:34:28 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/10-00001225 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.001452; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: feb0293a-b9ac-4d2a-9f48-2f05432b1a3b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: PJSIP/rt_769402 +State: NOT_ + + +12:34:28 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: PJSIP/10-00001225 +ActionID: 10274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: ARG4 + + +12:34:28 + +Event: Newexten +Privilege: dialplan,all +Channel: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:34:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001225 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: RTPAUDIOQOS +Value: ssrc=267835572;themssrc=2703252163;lp=0;rxjitter=0.000000;rxcount=947;txjitter=0.001375;txcount=946;rlp=0;rtt=0 +Extension: s +Application: Hangup +AppData: + + +12:34:28 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001225 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021479067 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492039.10249 +Linkedid: 1724492039.10249 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000219; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Source: 78162769402 +Destination: 989021479067 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001226 +LastApplication: Dial +LastData: PJSIP/+79021479067@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 29 +BillableSeconds: 19 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492039.10249 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:34:28 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10275 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116479161 +Priority: 1 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492193.1 +Linkedid: 1724492193.10251 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-00001227 + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724492193.10251 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:36:33 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492193.10251 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116479161 +Priority: 2 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116479161 +Application: Gosub +AppData: sub-record-check,s,1(out,989116479161,dontcare) + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724492193.10251 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492193.10251 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: __CALLFILENAME +Value: out-989116479161-10-20240824-123633-1724492193.10251 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116479161-10-20240824-123633-1724492193.10251 + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989116479161-10-20240824-123633-1724492193.10251.wav + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116479161 +Priority: 7 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193. +Variable: MOHCLASS +Value: default +Extension: 989116479161 +Application: Set +AppData: MOHCLASS=default + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116479161 +Priority: 11 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_EXTEN +Value: 989116479161 +Extension: 989116479161 +Application: Macro +AppData: dialout-trunk,6,+79116479161,,off + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79116479161 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79116479161 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116479161) + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Extension: s +Application: Dial +AppData: PJSIP/+79116479161@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116479161^989116479161^6^1724492193^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: PROGRESSTIME +Value: + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +Variable: __REC_STATUS +Value: RECORDING + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +Variable: __DAY +Value: 24 + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116479161 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:36:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116479161 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:36:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116479161 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492193.1 +Linkedid: 1724492193.10251 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:36:33 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001228 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116479161 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492193.10252 +DestLinkedid: 1724492193.10251 +DialString: +79116479161@rt_769402 + + +12:36:33 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Extension: 989116479161 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Variable: RINGTIME_MS +Value: 396 +DestChannel: PJSIP/rt_769402-00001228 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116479161 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116479161 +DestPriority: 1 +DestUniqueid: 1724492193.10252 +DestLinkedid: 1724492193.10251 +DialStatus: RINGING + + +12:36:33 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:36:34 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-00001227 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: PROGRESSTIME_MS +Value: 938 +DestChannel: PJSIP/rt_769402-00001228 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116479161 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116479161 +DestPriority: 1 +DestUniqueid: 1724492193.10252 +DestLinkedid: 1724492193.10251 +DialStatus: PROGRESS + + +12:36:44 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116479161 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116479161 +Priority: 1 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6da1fa8a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492204.462370 +SentRTP: 1724572192 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x58e4699a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 11431 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 19 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:36:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116479161 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116479161 +Priority: 1 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:36:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116479161 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +Variable: ARG3 +Value: +Extension: s +Application: Return +AppData: + + +12:36:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116479161 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-00001228 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116479161 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724492193.10252 +DestLinkedid: 1724492193.10251 +DialStatus: ANSWER +BridgeUniqueid: 35039ca0-bda3-4219-8cd5-1d176b628f14 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:36:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: BRIDGEPVTCALLID +Value: 0aa037b0-8222-4c47-845e-62346fbfd020 + + +12:37:04 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116479161 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6da1fa8a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492224.461747 +SentRTP: 1724732192 +SentPackets: 1500 +SentOctets: 240000 +Report0SourceSSRC: 0x58e4699a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 12431 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:37:09 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001228 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116479161 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6da1fa8a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492229.461434 +SentRTP: 1724772192 +SentPackets: 1750 +SentOctets: 280000 +Report0SourceSSRC: 0x58e4699a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 12680 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 67 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:37:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +Variable: RTPAUDIOQOSRTTBRIDGED +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:37:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: < +ConnectedLineNum: 989116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: ANSWEREDTIME +Value: 19 +BridgeUniqueid: 35039ca0-bda3-4219-8cd5-1d176b628f14 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:37:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: MACRO_CONTEXT +Value: + + +12:37:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001227 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724492193.10251 +Linkedid: 1 +Cause: 16 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +12:37:12 + +Event: DeviceStateChange +Privilege: call,all +BridgeUniqueid: 35039ca0-bda3-4219-8cd5-1d176b628f14 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-00001228 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116479161 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492193.10252 +Linkedid: 1724492193.10251 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.001278; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing + + +12:37:12 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: ssrc=275305764;themssrc=229025109;lp=0;rxjitter=0.000000;rxcount=1894;txjitter=0.001125 +Family: refreshcallhistory +Channel: PJSIP/10-00001227 +ActionID: 10276 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOS +Source: 78162769402 +Destination: 989116479161 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001228 +LastApplication: Dial +LastData: PJSIP/+79116479161@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 39 +BillableSeconds: 19 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492193.10251 +UserField: + + +12:37:12 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116479161 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492193.10251 +Linkedid: 1724492193.10251 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10277 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:37:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T12 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +12:37:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 2 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: LOCAL(ARGC) +Value: 3 +Extension: 79217365096 +Application: Gosub +AppData: sub-record-check,s,1(in,79217365096,dontcare) + + +12:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724492241 +Linkedid: 1724492241.10253 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 3 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: FROMEXTEN +Value: 79517257934 +Extension: in +Application: ExecIf +AppData: 11?Set(FROMEXTEN=79517257934) + + +12:37:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: ARG3 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 3 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: Set +AppData: CHANNEL(tonezone)=ru + + +12:37:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: CALLED_BLACKLIST +Value: 1 +Extension: s +Application: Return +AppData: + + +12:37:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 12 +Uniqueid: 1724492241.10 +Linkedid: 1724492241.10253 +Variable: __MOHCLASS +Value: +Extension: 79217365096 +Application: Ringing +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:37:21 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: __RINGINGSENT +Value: TRUE +Extension: 79217365096 +Application: Answer +AppData: +Device: PJSIP/Megafon_3 +State: INUSE + + +12:37:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:37:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +12:37:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: 2 +Application: AGI +AppData: agi + + +12:37:23 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +CommandId: 574543379 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:37:23 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +CommandId: 1618383514 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:37:23 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +CommandId: 1604898648 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:37:23 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +CommandId: 1101644327 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +12:37:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.102 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +12:37:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001229 + + +12:37:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001229 + + +12:37:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:37:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: CDR(cnum)=79517257934 +Variable: MACRO_DEPTH +Value: 1 + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79517257934 + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001229)=TRUE + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724492241.10 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +12:37:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +12:37:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +12:37:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +12:37:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: 194 +Application: QueueLog +AppData: 194,1724492241.10253,NONE,DID,79217365096 + + +12:37:32 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:37:32 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10 +Linkedid: 1724492241.10253 +Variable: QUEUEJOINTIME +Value: 1724492252 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492252.10254 +Linkedid: 1724492241.10253 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492252.10254 +Linkedid: 1724492241.10253 +Variable: __RINGINGSENT +Value: TRUE + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492252.10254 +Linkedid: 1724492241.10253 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: __FROMQUEUEEXTEN +Value: 79517257934 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: __TIMESTR +Value: 20240824-123721 + + +12:37:32 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000aeb;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492252.10254 +LocalOneLinkedid: 1724492241.10253 +LocalTwoChannel: Local/12@from-queue-00000aeb;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79517257934 +LocalTwoCallerIDName: 79517257934 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492252.10255 +LocalTwoLinkedid: 1724492241.10253 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000aeb;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 +DestLanguage: en +DestAccountCode: + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492252.10256 +Linkedid: 1724492241.10253 +DestChannel: Local/12@from-queue-00000aeb;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724492252.10254 +DestLinkedid: 1724492241.10253 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492252.10256 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492252.10256 +Linkedid: 1724492241.10253 +Variable: __DIRECTION +Value: + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001229 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: __MON_FMT +Value: wav + + +12:37:32 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000aec;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492252.10256 +LocalOneLinkedid: 1724492241.10253 +LocalTwoChannel: Local/13@from-queue-00000aec;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79517257934 +LocalTwoCallerIDName: 79517257934 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492252.10257 +LocalTwoLinkedid: 1724492241.10253 +LocalOptimization: No + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492252.10258 +Linkedid: 1724492241.10253 +DestChannel: Local/13@from-queue-00000aec;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724492252.10256 +DestLinkedid: 1724492241.10253 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492252.10258 +Linkedid: 1724492241.10253 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492252.10258 +Linkedid: 1724492241.10253 +Variable: __DAY +Value: 24 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +12:37:32 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: __FROM_DID +Value: 79217365096 + + +12:37:32 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000aed;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492252.10258 +LocalOneLinkedid: 1724492241.10253 +LocalTwoChannel: Local/10@from-queue-00000aed;2 + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 3 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +DestChannel: Local/10@from-queue-00000aed;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492252.10258 +DestLinkedid: 1724492241.10253 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 10 +Application: GotoIf +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG4 +Value: 0 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724492252.10259 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7951 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: CHANEXTENCONTEXT +Value: 10@from-queue-00000aed;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000aed;2 + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000aed;2 +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 11 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: CALLERID(number)=79517257934 +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: mac +Exten: s +Priority: 53 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: CDR(cnum)=79517257934 +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: RingGroupMethod=none +Variable: MACRO_DEPTH +Value: 1 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +12:37:32 + +Event: New +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: __FROMEXTEN=79517257934 +Variable: MACRO_DEPTH +Value: 1 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: __CALLFILENAME +Value: external-10-79517257934-20240824-123732-1724492252.10259 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79517257934-20240824-123732-1724492252.10259 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000aed;2 +Variable: MACRO_DEPTH +Value: 1 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: ARG3 +Value: 10 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: DB_RESULT +Value: 10 +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: dstring +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: ctset +Priority: 1 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79517257934 +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724492252.1 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 44 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: Dial +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241. +Variable: RINGTIME_MS +Value: + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492252.10260 +Linkedid: 1724492 +Variable: __FROMQ +Value: true +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492252.10260 +Linkedid: 1724492241.1025 +Variable: __FROMEXTEN +Value: 79517257934 + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492252.10260 +Linkedid: 1724492241.10253 +Variable: __TTL +Value: 63 +Extension: 13 +Application: Set +AppData: __FROMQ=true + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492252.10260 +Linkedid: 1724492241.10253 +Variable: __NODEST +Value: 194 +Extension: 13 +Application: GotoIf +AppData: 1?194,1 + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492252.10260 +Linkedid: 1724492241.10253 +Variable: __DIRECTION +Value: + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492252.10260 +Linkedid: 1724492241.10253 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +12:37:32 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/10@from-queue-00000aed;1 +DestChannelState: 5 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492252.10260 +DestLinkedid: 1724492241.10253 +DialString: 10/sip +Device: Local/10@from-queue +State: INUSE + + +12:37:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 2 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: ARG5 +Value: 0 + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724492252.10255 +Variable: DB_RESULT +Value: EXTENSION + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724492252.10257 +Linkedid: 17244 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +12:37:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: CHANEXTEN +Value: 12 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000aeb;2 +Variable: HOTDESCKCHAN +Value: 12@from-queue-00000aeb;2 + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) +Variable: MACRO_DEPTH +Value: 2 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724 +Linkedid: 1724492241.10253 +Variable: ARG1 +Value: novm +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724492252.10 +Linkedid: 1724492241.10253 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: user-callerid, + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000aec;2 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79517257934 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492252.1 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: HOTDESKEXTEN +Value: 13@from + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: s +Application: GotoIf +AppData: 1?report +Variable: MACRO_DEPTH +Value: 2 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724492252.10 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: CDR(cnam)=79517257934 +Variable: MACRO_DEPTH +Value: 2 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: e + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1 +Linkedid: 1724492241.10253 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: __TIMESTR +Value: 20240824-123732 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-123732 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: LOCAL(ARG3) +Value: 13 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: su +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=7 + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79517257934-20240824-123732-1724492252.10257.wav,abi(), + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79517257934-20240824-123732-1724492252.10257.wav + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: 1 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=13) + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: +Value: PJSIP/13 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: MACRO_DEPTH +Value: 2 + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MA +Value: HhTtrM(auto-blkvm) + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:37:33 + +Event: VarSet +Privilege: di +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.1025 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-ho +Exten: s +Priority: 1 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: DIALEDTIME +Value: + + +12:37:33 + +Event: NewConnecte +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492252.10254 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: +Linkedid: 1724492241.10253 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 5 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: +Linkedid: 1724492241.10253 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: CALLTYPE +Value: external + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +12:37:33 + +Event: VarSet +Privilege: d +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79517257934-20240824-123732-1724492252.10255 +Variable: MACRO_DEPTH +Value: 1 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: rec +Priority: 22 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: __RECORD_ID +Value: Local/12@from-queue-00000aeb;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000aeb;2 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG2 +Value: + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724492252.10255 +Linkedid: +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: dstring +Application: Set +AppData: DEVICES=12 +Variable: DEVICES +Value: 12 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_1 + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +12:37:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +12:37:33 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/13-0000122b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: PROGRESSTIME_MS +Value: + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000122b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.1025 +Variable: __RINGTIMER +Value: 60 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000122b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.10253 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:37:33 + +Event: Newext +Privilege: dialplan,all +Channel: PJSIP/13-0000122b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.10253 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +12:37:33 + +Event: VarSet +Privilege: call,all +Channel: PJSIP/12-0000122c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492252.10262 +Linkedid: 1724492241.10253 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +12:37:33 + +Event: VarSet +Privilege: dia +Channel: PJSIP/12-0000122c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492252.10262 +Linkedid: 1724492241.10253 +Variable: __FROMEXTEN +Value: 79517257934 + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000122c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492252.10262 +Linkedid: 1724492241.10253 +Variable: __FROMQ +Value: true + + +12:37:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000122c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-0000122b +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 + + +12:37:33 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +DestChannel: Local/12@from-queue-00000aeb;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492252.10254 +DestLinkedid: 1724492241.10253 +DialStatus: RINGING +DialString: 12/sip + + +12:37:33 + +Event: DeviceStateChange +Privilege: call,all +Device: Local/12@from-queue +State: INUSE + + +12:37:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 59 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +12:37:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 8 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Cause: 1 +Cause-txt: Unallocated (unassigned) number +Extension: s +Application: Set +AppData: SV_DIALSTATUS=CHANUNAVAIL + + +12:37:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 12 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?MacroExit() + + +12:37:35 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10 +ChannelState: 7 +ChannelStateDesc: Busy +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s-CHANUNAVAIL +Priority: 3 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s-CHANUNAVAIL +Application: Congestion +AppData: 10 +Variable: MACRO_DEPTH +Value: 1 +Device: Local/10@from-queue +State: INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory + + +12:37:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 7 +ChannelStateDesc: Busy +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s-CHANUNAVAIL +Priority: 3 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +DestChannel: Local/10@from-queue-00000aed;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492252.10258 +DestLinkedid: 1724492241.10253 +DialStatus: CONGESTION +Class: default +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +RingTime: 3000 +Cause: 0 +Cause-txt: Unknown +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Local/10@from-queue +State: NOT_INUSE +Variable: MACRO_DEPTH +Value: 0 + + +12:37:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 7 +ChannelStateDesc: Busy +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:37:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000aed;2 +ChannelState: 7 +ChannelStateDesc: Busy +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +12:37:35 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 7 +ChannelStateDesc: Busy +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492252.10259 +Linkedid: 1724492241.10253 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10280 +Source: 79517257934 +Destination: 10 +DestinationContext: ext-local +CallerID: "79517257934" <79517257934> +DestinationChannel: PJSIP/10-0000122a +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 2 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492252.10259 +UserField: +Cause: 34 +Cause-txt: Circuit/channel congestion +Device: Local/10@from-queue +State: NOT_INUSE + + +12:37:36 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 422 +LastCall: 1724491822 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 3712 +DestChannel: Local/13@from-queue-00000aec;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492252.10256 +DestLinkedid: +DialStatus: RINGING + + +12:37:36 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 + + +12:37:36 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 4373 +DestChannel: Local/12@from-queue-00000aeb;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492252.10254 +DestLinkedid: +DialStatus: RINGING + + +12:37:39 + +Event: Newexten +Privilege: dialplan,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/13&Custom +Status: 1 +StatusText: InUse +Channel: PJSIP/13-0000122b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.10253 +Variable: DIALEDPEERNUMBER +Value: 13/sip +Device: PJSIP/13 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm + + +12:37:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 2 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.10253 +Variable: MACRO_DEPTH +Value: 1 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 422 +LastCall: 1724491822 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Set +AppData: __MACRO_RESULT= + + +12:37:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.10253 +Variable: FORWARD_CONTEXT +Value: from-internal +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal + + +12:37:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.10253 +Extension: s +Application: Macro +AppData: blkvm-clr, +Variable: ARG1 +Value: + + +12:37:39 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000122b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.10253 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_EXTEN +Value: s + + +12:37:39 + +Event: DialEnd +Privilege: call +Channel: PJSIP/13-0000122b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.10253 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +12:37:39 + +Event: +Privilege: call,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +BridgeUniqueid: de150cef-f050-47d1-941b-23acacd2ebef +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/12@from-queue-00000aeb;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492252.10254 +DestLinkedid: 1724492241.10253 +DialStatus: CANCEL + + +12:37:40 + +Event: BridgeCreate +Privilege: call,all +Device: Queue +State: NOT_INUSE +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +DestChannel: Local/13@from-queue-00000aec;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492252.10256 +DestLinkedid: 1724492241.10253 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 7 +RingTime: 7 +BridgeUniqueid: f0994d47-0f69-4c95-9094-55305f185a66 +BridgeType: bas + + +12:37:40 + +Event: VarSet +Privilege: dialplan,all +Device: Local/12@from-queue +State: NOT_INUSE +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +DestChannel: PJSIP/12-0000122c +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724492252.10262 +DestLinkedid: 1724492241.10253 +DialStatus: CANCEL +Variable: MACRO_CONTEXT +Value: ext-local + + +12:37:40 + +Event: VarSet +Privilege: +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_CONTEXT +Value: +BridgeUniqueid: f0994d47-0f69-4c95-9094-55305f185a66 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:37:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aeb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492 +Linkedid: 1724492241.10253 +Cause: 26 +Extension: h +Application: Macro +AppData: hangupcall, +Cause-txt: Answered elsewhere +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/12 +State: NOT_INUSE + + +12:37:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492252.10256 +Linkedid: 1724492241.10253 +Variable: BRIDGEPVTCALLID +Value: SDc0unf01-cea8d5c3a74fdc272eb8a977a +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: f0994d47-0f69-4c95-9094-55305f185a66 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +12:37:40 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/13-0000122b +ChannelState: 6 +ChannelStateDesc: Ring +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492252.10255 +Linkedid: 1724492241.10253 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: de150cef-f050-47d1-941b-23acacd2ebef +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:37:40 + +Event: UserEvent +Privilege: user,all +AccountCode: +Source: 79517257934 +Destination: 12 +DestinationContext: ext-local +CallerID: "79517257934" <79517257934> +Channel: LOCAL/12@FROM-QUEUE +DestinationChannel: PJSIP/12-0000122c +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492252.10255 +UserField: +BridgeUniqueid: de150cef-f050-47d1-941b-23acacd2ebef +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: BRIDGEPVTCALLID +Value: 1 +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10283 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082940424 +Priority: 1 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492272.1 +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-0000122d + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:37:52 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492272.10263 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082940424 +Priority: 2 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989082940424 +Application: Gosub +AppData: sub-record-check,s,1(out,989082940424,dontcare) + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724492272.10263 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492272.10263 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: __CALLFILENAME +Value: out-989082940424-10-20240824-123752-1724492272.10263 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989082940424-10-20240824-123752-1724492272.10263 + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989082940424-10-20240824-123752-1724492272.10263.wav + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082940424 +Priority: 7 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272. +Variable: MOHCLASS +Value: default +Extension: 989082940424 +Application: Set +AppData: MOHCLASS=default + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082940424 +Priority: 11 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_EXTEN +Value: 989082940424 +Extension: 989082940424 +Application: Macro +AppData: dialout-trunk,6,+79082940424,,off + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79082940424 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79082940424 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79082940424) + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Extension: s +Application: Dial +AppData: PJSIP/+79082940424@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79082940424^989082940424^6^1724492272^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: PROGRESSTIME +Value: + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +Variable: __REC_STATUS +Value: RECORDING + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +Variable: __DAY +Value: 24 + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:37:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:37:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492272.1 +Linkedid: 1724492272.10263 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:37:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000122e +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989082940424 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492272.10264 +DestLinkedid: 1724492272.10263 +DialString: +79082940424@rt_769402 +To: 193.201.229 + + +12:37:52 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989082940424 +Priority: 1 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +Extension: 989082940424 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/rt_769402 +State: RINGING + + +12:37:52 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-0000122d +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: RINGTIME_MS +Value: 380 +Device: PJSIP/10 +State: INUSE +DestChannel: PJSIP/rt_769402-0000122e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989082940424 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989082940424 +DestPriority: 1 +DestUniqueid: 1724492272.10264 +DestLinkedid: 1724492272.10263 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:37:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:37:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492252.10256 +Linkedid: 1724492241.10253 +Variable: BRIDGEPVTCALL +Value: +DestChannel: Local/13@from-queue-00000aec;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79517257934 +DestConnectedLineName: 79517257934 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492252.10256 +DestLinkedid: 1724492241.10253 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 7 +TalkTime: 15 +Reason: caller + + +12:37:54 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: f0994d47-0f69-4c95-9094-55305f185a66 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-que +Exten: h +Priority: 1 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +12:37:54 + +Event: BridgeLeave +Privilege: call,all +BridgeUniqueid: de150cef-f050-47d1-941b-23acacd2ebef +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.10253 +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: BRIDGEPEER +Value: + + +12:37:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: ARG3 +Value: 0 + + +12:37:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_EXTEN +Value: + + +12:37:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aec;2 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:37:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000122b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79517257934 +ConnectedLineName: 79517257934 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492252.10261 +Linkedid: 1724492241.10253 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000 +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: de150cef-f050-47d1-941b-23acacd2ebef +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:37:55 + +Event: VarSet +Privilege: dialplan,al +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: Hangup +AppData: + + +12:37:55 + +Event: ExtensionStatus +Privilege: call,all +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Channel: PJSIP/Megafon_3-00001229 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724492241.10253 +Linkedid: 1724492241.10253 +Variable: RTPAUDIOQOSMES +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10284 +Source: 79517257934 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79517257934" <79517257934> +DestinationChannel: Local/12@from-queue-00000aeb;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 18 +BillableSeconds: 18 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492241.10253 +UserField: +Cause: 16 +Cause-txt: Normal Clearing + + +12:37:55 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +AccountCode: +Source: 79517257934 +Destination: 13 +DestinationContext: ext-local +CallerID: "79517257934" <79517257934> +Channel: Local/13@from-que +DestinationChannel: PJSIP/13-0000122b +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 22 +BillableSeconds: 14 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492252.10257 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10286 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_DEPTH + + +12:37:55 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79517257934 +CallerIDName: 79517257934 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492252.10257 +Linkedid: 1724492241.10253 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10287 + + +12:38:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989082940424 +Priority: 1 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +Variable: LOCAL(AR +Value: + + +12:38:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 172449227 +Linkedid: 1724492272.10263 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:38:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +Variable: BRIDGEPEER +Value: PJSIP/10-0000122d +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-0000122e +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989082940424 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724492272.10264 +DestLinkedid: 1724492272.10263 +DialStatus: ANSWER +BridgeUniqueid: c0909129-ea8f-40ae-b05b-50c37b9fe157 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:38:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: BRIDGEPVTCALLID +Value: e912a6e0-38a7-42f4-839a-fa1dd3ab3d45 + + +12:38:16 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1c41ef0e +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492296.416553 +SentRTP: 1724532288 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x01daf905 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 51871 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:38:21 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x1c41ef0e +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492301.415776 +SentRTP: 1724572288 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x01daf905 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 52121 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:38:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:38:24 + +Event: BridgeLe +Privilege: call,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: c0909129-ea8f-40ae-b05b-50c37b9fe157 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:38:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492272.102 +Linkedid: 1724492272.10263 +Variable: ARG2 +Value: + + +12:38:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:38:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000122e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492272.10264 +Linkedid: 1724492272.10263 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxm +BridgeUniqueid: c0909129-ea8f-40ae-b05b-50c37b9fe157 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:38:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: Hangup +AppData: +Device: PJSIP/rt_769402 +State: NOT_INUSE +Variable: RTPAUDIOQOS +Value: ssrc=1155843976;themssrc=252924456;lp=0;rxjitter=0.000000;rxcount=651;txjitter=0.001125;txcount=650;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +12:38:24 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10-0000122d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492272.10263 +Linkedid: 1724492272.10263 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000146; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Source: 78162769402 +Destination: 989082940424 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000122e +LastApplication: Dial +LastData: PJSIP/+79082940424@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 32 +BillableSeconds: 13 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492272.10263 +UserField: +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:38:24 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10289 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082940424 +Priority: 1 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492334.1 +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-0000122f + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:38:54 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492334.10265 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082940424 +Priority: 2 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989082940424 +Application: Gosub +AppData: sub-record-check,s,1(out,989082940424,dontcare) + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724492334.10265 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492334.10265 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: __CALLFILENAME +Value: out-989082940424-10-20240824-123854-1724492334.10265 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989082940424-10-20240824-123854-1724492334.10265 + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989082940424-10-20240824-123854-1724492334.10265.wav + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082940424 +Priority: 7 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334. +Variable: MOHCLASS +Value: default +Extension: 989082940424 +Application: Set +AppData: MOHCLASS=default + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082940424 +Priority: 11 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_EXTEN +Value: 989082940424 +Extension: 989082940424 +Application: Macro +AppData: dialout-trunk,6,+79082940424,,off + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79082940424 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79082940424 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79082940424) + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Extension: s +Application: Dial +AppData: PJSIP/+79082940424@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79082940424^989082940424^6^1724492334^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: PROGRESSTIME +Value: + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +Variable: __REC_STATUS +Value: RECORDING + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +Variable: __DAY +Value: 24 + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:38:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492334.1 +Linkedid: 1724492334.10265 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:38:54 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001230 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989082940424 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492334.10266 +DestLinkedid: 1724492334.10265 +DialString: +79082940424@rt_769402 + + +12:38:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989082940424 +Priority: 1 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +Extension: 989082940424 +Application: AppDial +AppData: (Outgoing Line) + + +12:38:54 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: INUSE +Channel: PJSIP/10-0000122f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: RINGTIME_MS +Value: 466 +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +DestChannel: PJSIP/rt_769402-00001230 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989082940424 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989082940424 +DestPriority: 1 +DestUniqueid: 1724492334.10266 +DestLinkedid: 1724492334.10265 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:39:01 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/rt_769402 +State: INUSE + + +12:39:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989082940424 +Priority: 1 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +Variable: LOCAL(ARG6) +Value: 78162769402 + + +12:39:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +Extension: s +Application: Return +AppData: +Variable: ARG1 +Value: + + +12:39:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +DestChannel: PJSIP/rt_769402-00001230 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989082940424 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724492334.10266 +DestLinkedid: 1724492334.10265 +DialStatus: ANSWER +BridgeUniqueid: dc7d4a18-b5d3-4825-b1bd-e8f861135a87 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 49f4a3e3-2e2c532eebef4c6732910080f0808080@KX-TGP600RU + + +12:39:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: BRIDGEPVTCALLID +Value: 85f6af5d-e885-4c0d-b6ef-78b7ca905b4c + + +12:39:06 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0e6185b3 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492346.588677 +SentRTP: 1724532176 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0xbae4c8ef +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 56039 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 10 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:39:11 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0e6185b3 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492351.587706 +SentRTP: 1724572336 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xbae4c8ef +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 56289 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:39:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: RTPAUDIOQOSJITTERBRIDGED +Value: minrxjitter=000.000125;maxrxjitter=000.001625;avgrxjitter=000.000635;stdevrxjitter=000.000200;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +12:39:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000200; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:39:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001230 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082940424 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492334.10266 +Linkedid: 1724492334.10265 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +BridgeUniqueid: dc7d4a18-b5d3-4825-b1bd-e8f861135a87 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:39:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492334.10265 +Linkedid: 1724492 +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: dc7d4a18-b5d3-4825-b1bd-e8f861135a87 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Variable: DIALSTATUS +Value: ANSWER + + +12:39:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:39:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10290 + + +12:39:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000122f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000175; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.00000 + + +12:39:18 + +Event: UserEvent +Privilege: user,all +AccountCode: +Source: 78162769402 +Destination: 989082940424 +DestinationContext: from-internal +CallerID: "" <78162769402> +Channel: PJSIP/10 +DestinationChannel: PJSIP/rt_769402-00001230 +LastApplication: Dial +LastData: PJSIP/+79082940424@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 24 +BillableSeconds: 17 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492334.10265 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082940424 +ConnectedLineName: CID +Language: ru +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492334.10265 +Linkedid: 1724492334.10265 +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10291 + + +12:39:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:39:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724492370.10267 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:39:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724492370. +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-123930 +Variable: __YEAR +Value: 2024 + + +12:39:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:39:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +12:39:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:39:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +12:39:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +12:39:31 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +12:39:31 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +12:39:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 14 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:39:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:39:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +12:39:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 2 +Application: AGI +AppData: agi + + +12:39:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +CommandId: 1208333480 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:39:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +CommandId: 1032706667 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:39:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +CommandId: 344024257 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:39:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +CommandId: 1003482042 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +12:39:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.102 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +12:39:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001231 + + +12:39:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001231 + + +12:39:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:39:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: CDR(cnum)=79082954721 +Variable: MACRO_DEPTH +Value: 1 + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79082954721 + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001231)=TRUE + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +12:39:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724492370.10 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +12:39:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +12:39:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +12:39:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +12:39:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +12:39:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 194 +Application: Set +AppData: VQ_MOH= +Variable: VQ_MOH +Value: + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 194 +Application: Set +AppData: QUEUEJOINTIME=1724492381 +Variable: QUEUEJOINTIME +Value: + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492381.10268 +Linkedid: 1724492370.10267 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492381.10268 +Linkedid: 1724492370.10267 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492381.10268 +Linkedid: 1724492370.10267 +Variable: __REC_STATUS +Value: INITIALIZED + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: __FROM_DID +Value: 79217365096 + + +12:39:41 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000aee;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492381.10268 +LocalOneLinkedid: 1724492370.10267 +LocalTwoChannel: Local/12@from-queue-00000aee;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082954721 +LocalTwoCallerIDName: 79082954721 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492381.10270 +Linkedid: 1724492370.10267 +DestChannel: Local/12@from-queue-00000aee;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724492381.10268 +DestLinkedid: 1724492370.10267 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QC_CONFIRM +Value: 0 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492381.10270 +Linkedid: 1724492370.10267 +Variable: __CALLEE_ACCOUNCODE +Value: + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492381.10270 +Linkedid: 1724492370.10267 +Variable: __DAY +Value: 08 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: __NODEST +Value: 194 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: __MOHCLASS +Value: + + +12:39:41 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000aef;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: < + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492381.10272 +Linkedid: 1724492370.10267 +DestChannel: Local/13@from-queue-00000aef;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724492381.10270 +DestLinkedid: 1724492370.10267 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492381.10272 +Linkedid: 1724492370.10267 +Variable: __TTL +Value: 64 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492381.10272 +Linkedid: 1724492370.10267 +Variable: __YEAR +Value: 2024 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: __RVOL_MODE +Value: dontcare + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492381.10273 +Linkedid: 172449237 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:39:41 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:39:41 + +Event: Newexten +Privilege: dialplan,all +LocalOneChannel: Local/10@from-queue-00000af0;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492381.10272 +LocalOneLinkedid: 1724492370.10267 +LocalTwoChannel: Local/10@from-queue-00000af0;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082954721 +LocalTwoCallerIDName: 79082954721 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492381.10273 +LocalTwoLinkedid: 1724492370.10267 +Context: from-queue +Exten: 12 +LocalOptimization: No +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Priority: 2 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +DestChannel: Local/10@from-queue-00000af0;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492381.10272 +DestLinkedid: 1724492370.10267 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 12 +Application: Set +AppData: QAGENT=12 +Variable: QAGENT +Value: 12 + + +12:39:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext +Exten: 12 +Priority: 1 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: DB_RESULT +Value: 0 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: ARG2 +Value: 12 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724 +Linkedid: 1724492370.10267 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +12:39:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPTH +Value: 2 + + +12:39:41 + +Event: V +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: AMPUSER +Value: 79082954721 +Extension: s +Application: Set +AppData: AMPUSER=79082954721 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 10 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: HOTDESKCALL +Value: 0 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +12:39:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: 13 +Application: Set +AppData: QAGENT=13 +Variable: MACRO_DEPTH +Value: 2 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 7908295472 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 +Variable: DB_RESULT +Value: 0 + + +12:39:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG1 +Value: novm + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: CALLERID(number)=79082954721 +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724492381 +Linkedid: 1724492370.10267 +Variable: __TTL +Value: 63 +Extension: s +Application: Set +AppData: __TTL=63 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: CDR(cnam)=79082954721 +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: ext-local + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: __PICKUPMARK +Value: 12 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: __TIMESTR +Value: 20240824-123941 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-123941 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 172 +Linkedid: 1724492370.10267 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: LOCAL(ARG3) +Value: 12 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: __REC_P +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79082954721) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79082954721-20240824-123941-1724492381.10269.wav + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:39:42 + +Event: Newexten +Privilege: dialp +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: dstring +Priority: 1 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=2) + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 38 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492381.10270 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:39:42 + +Event: VarSet +Privilege: dia +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: ANSWEREDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=20 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79082954721-20240824-123941-1724492381.10271 +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: N +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000aef;2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: dstring +Application: Set +AppData: DEVICES=13 +Variable: DEVICES +Value: 13 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +12:39:42 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 28 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 7 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +12:39:42 + +Event: Var +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724492381.10271 +Linkedid: 1 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 3 +Extension: 10 +Application: Set +AppData: QAGENT=10 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 +Variable: DB_RESULT +Value: 0 + + +12:39:42 + +Event: VarSet +Privilege: di +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG1 +Value: novm + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79082954721 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 172449238 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: CDR(cnam)=79082954721 +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790829547 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: PROGRESSTIME +Value: + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001232 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492381.10274 +Linkedid: 1724492370.10267 +Variable: __MIXMON_ID +Value: +Extension: s +Application: Set +AppData: CDR(cnum)=79082954721 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001232 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492381.10274 +Linkedid: 1724492370.10267 +Variable: __EXTTOCALL +Value: 13 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001232 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492381.10274 +Linkedid: 1724492370.10267 +Variable: __FROMQUEUEEXTEN +Value: 79082954721 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001232 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724492381.10274 +Linkedid: 1724492370.10267 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001232 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724492381.10274 +Linkedid: 1724492370.1026 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_EXTEN +Value: 10 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-e +Exten: s +Priority: 4 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-123941 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492381.10275 +Linkedid: 1724492370.10267 +Variable: __REC_POLICY_MODE +Value: YES + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001233 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492381.10275 +Linkedid: 1724492370.10267 +Variable: __PICKUPMARK +Value: 12 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724492381.10275 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: __SIGNORE +Value: TRUE + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001233 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: fro +Exten: s +Priority: 1 +Uniqueid: 1724492381.10275 +Linkedid: 1724492370.10267 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: __CALLFILENAME +Value: external-10-79082954721-20240824-123941-1724492381.10273 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79082954721-20240824-123941-1724492381.10273 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000af0;2 +Variable: MACRO_DEPTH +Value: 1 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: ARG3 +Value: 10 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: DB_RESULT +Value: 10 +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790829 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: dstring +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: ctset +Priority: 1 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79082954721 +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724492381 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: s +Application: Dial +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) +Variable: MACRO_DEPTH +Value: 2 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10273 +Linkedid: 172449237 +Variable: RINGTIME_MS +Value: + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001233 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: func-apply-siphea +Exten: s +Priority: 4 +Uniqueid: 1724492381.10275 +Linkedid: 1724492370.10267 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001234 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492381.10276 +Linkedid: 1724492370.10267 +Variable: DIALEDPEERNUMBER +Value: 10/ +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-00001232 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492381.10274 +DestLinkedid: 1724492370.10267 +DialString: 13/sip + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001234 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492381.10276 +Linkedid: 1724492370.10267 +Variable: __TIMESTR +Value: 20240824-123941 + + +12:39:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001234 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724492381.10276 +Linkedid: 1724492370.10267 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:39:42 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/13@from-queue-00000aef;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492381.10270 +DestLinkedid: 1724492370.10267 +DialStatus: RINGING + + +12:39:42 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратур +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492381.10272 +Linkedid: 1724492370.10267 +DestChannel: PJSIP/10-00001234 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492381.10276 +DestLinkedid: 1724492370.10267 +DialString: 10/sip +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE + + +12:39:43 + +Event: DialState +Privilege: call,all +Device: Local/10@from-queue +State: INUSE +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +DestChannel: Local/10@from-queue-00000af0;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492381.10272 +DestLinkedid: 1724492370.10267 +DialStatus: RINGING + + +12:39:45 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 3430 +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +DestChannel: Local/13@from-queue-00000aef;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492381.10270 +DestLinkedid: +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:39:45 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 3733 +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +DestChannel: Local/12@from-queue-00000aee;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492381.10268 +DestLinkedid: 1724492370.10267 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:39:46 + +Event: DialState +Privilege: call,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 4299 +DestChannel: PJSIP/10-00001234 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492381.10276 +DestLinkedid: 1724492370.10267 +DialStatus: RINGING + + +12:39:46 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +DestChannel: Local/10@from-queue-00000af0;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492381.10272 +DestLinkedid: 1724492370.10267 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:39:47 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/10 +State: INUSE + + +12:39:47 + +Event: QueueMemberSta +Privilege: agent,all +Channel: PJSIP/10-00001234 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492381.10276 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 195 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:39:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001234 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 4 +Uniqueid: 1724492381.10276 +Linkedid: 1724492370.10267 +Extension: s +Application: Set +AppData: MASTER_CHANNEL +Variable: MACRO_DEPTH +Value: 1 + + +12:39:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001234 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724492381.10276 +Linkedid: 172449 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +12:39:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001234 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: 1724492381.10276 +Linkedid: 1724492370.10267 +Variable: GOSUB +Value: 2 +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +12:39:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001234 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724492381.10276 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +12:39:47 + +Event: Devic +Privilege: call,all +Channel: PJSIP/10-00001234 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492381.10276 +Linkedid: 1724492370.10267 +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-00001234 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724492381.10276 +DestLinkedid: 1724492370.10267 +DialStatus: ANSWER +BridgeUniqueid: abf49807-dbb8-4cc9-983e-f88274fcb286 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +12:39:47 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: abf49807-dbb8-4cc9-983e-f88274fcb286 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: BRIDGEPVTCALLID +Value: 94067516-d60a-4cdd-a825-0d6f37b15402 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/12@from-queue-00000aee;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492381.10272 +DestLinkedid: 1724492370.10267 +DialStatus: ANSWER + + +12:39:47 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +DestChannel: Local/13@from-queue-00000aef;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082954721 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492381.10268 +DestLinkedid: 1724492370.10267 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:39:47 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: PJSIP/13-00001232 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082954721 +DestConnectedLineName: 79082 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492381.10272 +DestLinkedid: 1724492370.10267 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +RingTime: 5 +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +BridgeUniqueid: d378e815-06d2-4981-81f5-25918853ae9c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:39:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 0 + + +12:39:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:39:47 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/13-00001232 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Device: Local/13@from-queue +State: NOT_INUSE + + +12:39:47 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: d378e815-06d2-4981-81f5-25918853ae9c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000aef;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Device: PJSIP/13 +State: NOT_INUSE +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: BRIDGEPEER +Value: 1 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10292 + + +12:39:47 + +Event: DialEnd +Privilege: call,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492381.10271 +Linkedid: 1724492370.10267 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10295 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +Source: 79082954721 +Destination: 13 +DestinationContext: ext-local +CallerID: "79082954721" <79082954721> +DestinationChannel: PJSIP/13-00001232 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492381.10271 +UserField: + + +12:39:47 + +Event: Hangup +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_PRIORITY +Value: 3 +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +12:39:47 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/12 +State: NOT_INUSE +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_CONTEXT +Value: + + +12:39:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Cause: 16 +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +12:39:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000aee;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_EXTEN +Value: +Source: 79082954721 +Destination: 12 +DestinationContext: ext-local +CallerID: "79082954721" <79082954721> +DestinationChannel: PJSIP/12-00001233 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492381.10269 +UserField: + + +12:39:47 + +Event: DeviceStateChange +Privilege: call,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492381.10269 +Linkedid: 1724492370.10267 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10297 +Device: Local/12@from-queue +State: NOT_INUSE + + +12:40:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001234 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492381.10276 +Linkedid: 1724492370.10267 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001500;avgrxjitter=000.001066;stdevrxjitter=000.000132;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +12:40:54 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/10-00001234 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000132; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:40:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: DIALEDTIME +Value: 72 +BridgeUniqueid: abf49807-dbb8-4cc9-983e-f88274fcb286 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:40:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 0 + + +12:40:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:40:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724492381.10273 +Linkedid: 1724492370.10267 +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: abf49807-dbb8-4cc9-983e-f88274fcb286 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:40:54 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001234 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492381.10276 +Linkedid: 1724492370.10267 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000132; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 306 +LastCall: 1724491797 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:40:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af0;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082954721 +ConnectedLineName: 79082954721 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492381.1 +Linkedid: 1724492370.10267 +Variable: MACRO_PRIORITY +Value: +Source: 79082954721 +Destination: 10 +DestinationContext: ext-local +CallerID: "79082954721" <79082954721> +DestinationChannel: PJSIP/10-00001234 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 72 +BillableSeconds: 67 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492381.10273 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10298 +Extension: s +Application: Hangup +AppData: +Cause: 16 + + +12:40:54 + +Event: VarSet +Privilege: dialp +Channel: PJSIP/Megafon_3-00001231 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: MACRO_EXTEN +Value: h +BridgeUniqueid: d378e815-06d2-4981-81f5-25918853ae9c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Extension: h +Application: Macro +AppData: hangupcall, + + +12:40:54 + +Event: UserEv +Privilege: call,all +AccountCode: +Source: 79082954721 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082954721" <79082954721> +Channel: PJSIP/Megafon_3-00001231 +DestinationChannel: Local/10@from-queue-00000af0;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 72 +BillableSeconds: 72 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492370.10267 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082954721 +CallerIDName: 79082954721 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724492370.10267 +Linkedid: 1724492370.10267 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000170; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=081.277799; stdevtxmes=015.821860; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602022888 +Priority: 1 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: 989602022888 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: TOUCH_MONITOR +Value: +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724492518.10277 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: +Value: 13-00001235 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-00001235 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13-00001235 +Variable: MACRO_DEPTH +Value: 1 + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724492518.10 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: AMPUSER +Value: 13 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: DB_RESULT +Value: 13 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 21 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DIAL_OPTIONS=HhTtr + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регист +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) +Variable: DB_RESULT +Value: ru + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: Set +AppData: CALLERID(name)=Регистратура_2 +Variable: MACRO_DEPTH +Value: 1 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: ARG1 +Value: + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Got +AppData: sub-record-check,s,1(out,989602022888,dontcare) + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __MONTH +Value: 08 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: __MON_FMT +Value: wav + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 4 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) +Variable: RECMODE +Value: yes + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: LOCAL(ARGC) +Value: 3 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492518.10277 +Linkedid: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/out-989602022888-13-20240824-124158-1724492518.10277.wav,abi(), +Variable: __CALLFILENAME +Value: out-989602022888-13-20240824-124158-1724492518.10277 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: recordcheck +Application: Return +AppData: +Variable: __REC_STATUS +Value: RECORDING + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: ARG1 +Value: +Extension: out +Application: Return +AppData: + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602022888 +Priority: 7 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: 989602022888 +Application: Set +AppData: _CALLERIDNAMEINTERNAL=Регистратура_2 +Variable: MOHCLASS +Value: default + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602022888 +Priority: 11 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: 989602022888 +Application: Macro +AppData: dialout-trunk,6,+79602022888,,off +Variable: MACRO_CONTEXT +Value: from-internal + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?chanfull + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: 13 + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 6 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13-00001235 +Variable: MACRO_DEPTH +Value: 2 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518. +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-o +Exten: s +Priority: 13 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: ExecIf +AppData: 0?Hangup() +Variable: MACRO_DEPTH +Value: 2 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 20 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> +Extension: s +Application: Set +AppData: USEROUTCID="SecretyDolgoletiya" <79217365096> + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:41:58 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-cal +Exten: s +Priority: 32 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)=78162769402) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 36 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=prohib_passed_screen) + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 41 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: Set +AppData: CDR(outbound_cnam)= +Variable: MACRO_DEPTH +Value: 2 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: OUTNUM +Value: +79602022888 +Extension: s +Application: Set +AppData: OUTNUM=+79602022888 + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) +Variable: MACRO_DEPTH +Value: 1 + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: ARG1 +Value: 6 +Extension: s +Application: MacroExit +AppData: + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602022888 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79602022888) + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602022888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602022888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/+79602022888@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79602022888^989602022888^6^1724492518^^78162769402) + + +12:41:58 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/rt_769402-00001236 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +Variable: PROGRESSTIME_MS +Value: + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +Variable: __RECORD_ID +Value: PJSIP/13-00001235 + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001236 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602022888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +Variable: __DIAL_OPTIONS +Value: HhTtr + + +12:41:58 + +Event: VarSet +Privilege: dialplan, +Channel: PJSIP/rt_769402-00001236 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602022888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: SIPHEADERKEYS +Value: Alert-Info +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info + + +12:41:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001236 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602022888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 7 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 1?Set(PJSIP_HEADER(remove,Alert-Info)=) + + +12:41:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001236 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602022888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +Extension: s +Application: While +AppData: 0 +Variable: func-apply +Value: + + +12:41:58 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602022888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001236 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989602022888 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492518.10278 +DestLinkedid: 1724492518.10277 +DialString: +79602022888@rt_769402 + + +12:41:58 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602022888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Extension: 989602022888 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 395 +DestChannel: PJSIP/rt_769402-00001236 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989602022888 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989602022888 +DestPriority: 1 +DestUniqueid: 1724492518.10278 +DestLinkedid: 1724492518.10277 +DialStatus: RINGING +Device: PJSIP/13 +State: INUSE + + +12:41:58 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:42:00 + +Event: DialState +Privilege: call,all +Channel: PJSIP/13-00001235 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602022888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: PROGRESSTIME_MS +Value: 1778 +DestChannel: PJSIP/rt_769402-00001236 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989602022888 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989602022888 +DestPriority: 1 +DestUniqueid: 1724492518.10278 +DestLinkedid: 1724492518.10277 +DialStatus: RINGING + + +12:42:01 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/rt_769402 +State: INUSE +Channel: PJSIP/rt_769402-00001236 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602022888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602022888 +Priority: 1 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +Variable: LOCAL(ARG5) +Value: + + +12:42:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001236 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602022888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:42:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001236 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602022888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +Variable: BRIDGEPEER +Value: PJSIP/13-00001235 +DestChannel: PJSIP/rt_769402-00001236 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989602022888 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724492518.10278 +DestLinkedid: 1724492518.10277 +DialStatus: ANSWER +BridgeUniqueid: d84c7b09-4cf9-4e96-b9d5-99b19b73c16c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:42:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602022888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: BRIDGEPVTCALLID +Value: baef1e8b-e8bf-4275-9ac4-c317c1c36882 + + +12:42:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524854499 +Priority: 1 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:42:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:42:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492523.1 +Linkedid: 1724492523.10279 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-00001237 + + +12:42:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724492523.10279 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:42:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:42:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:42:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:42:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:42:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:42:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:42:03 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:42:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492523.10279 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:42:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524854499 +Priority: 2 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989524854499 +Application: Gosub +AppData: sub-record-check,s,1(out,989524854499,dontcare) + + +12:42:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724492523.10279 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:42:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:42:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:42:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492523.10279 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:42:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: __CALLFILENAME +Value: out-989524854499-10-20240824-124203-1724492523.10279 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989524854499-10-20240824-124203-1724492523.10279 + + +12:42:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989524854499-10-20240824-124203-1724492523.10279.wav + + +12:42:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:42:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524854499 +Priority: 7 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523. +Variable: MOHCLASS +Value: default +Extension: 989524854499 +Application: Set +AppData: MOHCLASS=default + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524854499 +Priority: 11 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_EXTEN +Value: 989524854499 +Extension: 989524854499 +Application: Macro +AppData: dialout-trunk,6,+79524854499,,off + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:42:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:42:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:42:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:42:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:42:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79524854499 + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79524854499 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79524854499) + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524854499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524854499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Extension: s +Application: Dial +AppData: PJSIP/+79524854499@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79524854499^989524854499^6^1724492523^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524854499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: PROGRESSTIME +Value: + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Variable: __REC_STATUS +Value: RECORDING + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Variable: __DAY +Value: 24 + + +12:42:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:42:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:42:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492523.1 +Linkedid: 1724492523.10279 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:42:04 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524854499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001238 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989524854499 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492523.10280 +DestLinkedid: 1724492523.10279 +DialString: +79524854499@rt_769402 + + +12:42:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524854499 +Priority: 1 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Extension: 989524854499 +Application: AppDial +AppData: (Outgoing Line) + + +12:42:04 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: INUSE +Channel: PJSIP/10-00001237 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524854499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: RINGTIME_MS +Value: 353 +DestChannel: PJSIP/rt_769402-00001238 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989524854499 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989524854499 +DestPriority: 1 +DestUniqueid: 1724492523.10280 +DestLinkedid: 1724492523.10279 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 307 +LastCall: 1724492454 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:42:05 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001236 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602022888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x67245656 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492525.289340 +SentRTP: 1724532520 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xf8f63306 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 31025 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:42:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001236 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602022888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:42:20 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13-00001235 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602022888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: d84c7b09-4cf9-4e96-b9d5-99b19b73c16c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:42:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602022888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_EXTEN +Value: + + +12:42:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602022888 +ConnectedLineName: C +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:42:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001235 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602022888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: MACRO_CONTEXT +Value: +BridgeUniqueid: d84c7b09-4cf9-4e96-b9d5-99b19b73c16c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: Hangup +AppData: + + +12:42:20 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 78162769402 +Destination: 989602022888 +DestinationContext: from-internal +CallerID: "" <78162769402> +Channel: PJSIP/13-00001235 +DestinationChannel: PJSIP/rt_769402-00001236 +LastApplication: Dial +LastData: PJSIP/+79602022888@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 22 +BillableSeconds: 19 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492518.10277 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602022888 +ConnectedLineName: CID +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492518.10277 +Linkedid: 1724492518.10277 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000190; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:42:20 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/RT_769402 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602022888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492518.10278 +Linkedid: 1724492518.10277 +Cause: 16 +Cause-txt: Normal Clearing +Variable: RTPAUDIOQOSMES +Value: 1 +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10303 +Device: PJSIP/rt_769402 +State: RINGING +Queue: 194 +MemberName: Регистра +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:42:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524854499 +Priority: 1 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Variable: LOCAL(ARG2) +Value: 989524854499 + + +12:42:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +12:42:25 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Variable: GOSUB_RETVAL +Value: +Device: PJSIP/rt_769402 +State: INUSE +DestChannel: PJSIP/rt_769402-00001238 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989524854499 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724492523.10280 +DestLinkedid: 1724492523.10279 +DialStatus: ANSWER +BridgeUniqueid: fde4de3e-0687-4299-913b-55abb4b12553 +BridgeType: b +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:42:25 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: fde4de3e-0687-4299-913b-55abb4b12553 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/10-00001237 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524854499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: BRIDGEPVTCALLID +Value: e8755934-7c78-44ce-a5e6-4d07a6fe835a + + +12:42:30 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x018b5ec2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492550.321624 +SentRTP: 1724532544 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xc950e48a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 13802 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:42:35 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x018b5ec2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492555.320965 +SentRTP: 1724572544 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xc950e48a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 14052 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:42:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:42:44 + +Event: VarSet +Privilege: call,all +Channel: PJSIP/rt_769402-00001238 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: fde4de3e-0687-4299-913b-55abb4b12553 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:42:44 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-00001237 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524854499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492523.10280 +Linkedid: 1724492523.10279 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000212; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Source: 78162769402 +Destination: 989524854499 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001238 +LastApplication: Dial +LastData: PJSIP/+79524854499@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 41 +BillableSeconds: 19 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492523.10279 +UserField: +BridgeUniqueid: fde4de3e-0687-4299-913b-55abb4b12553 + + +12:42:44 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: fde4de3e-0687-4299-913b-55abb4b12553 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/10-00001237 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524854499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: ARG2 +Value: + + +12:42:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524854499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-intern +Exten: h +Priority: 1 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:42:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001237 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524854499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: + + +12:42:44 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10-00001237 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524854499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724492523.10279 +Linkedid: 1724492523.10279 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000165; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 307 +LastCall: 1724492454 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:42:44 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10305 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602033888 +Priority: 1 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492587.1 +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-00001239 + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:43:07 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492587.10281 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602033888 +Priority: 2 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989602033888 +Application: Gosub +AppData: sub-record-check,s,1(out,989602033888,dontcare) + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724492587.10281 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492587.10281 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: __CALLFILENAME +Value: out-989602033888-13-20240824-124307-1724492587.10281 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989602033888-13-20240824-124307-1724492587.10281 + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989602033888-13-20240824-124307-1724492587.10281.wav + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602033888 +Priority: 7 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587. +Variable: MOHCLASS +Value: default +Extension: 989602033888 +Application: Set +AppData: MOHCLASS=default + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602033888 +Priority: 11 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_EXTEN +Value: 989602033888 +Extension: 989602033888 +Application: Macro +AppData: dialout-trunk,6,+79602033888,,off + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) +Variable: DB_RESULT +Value: + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79602033888 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79602033888 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79602033888) + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Extension: s +Application: Dial +AppData: PJSIP/+79602033888@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79602033888^989602033888^6^1724492587^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: PROGRESSTIME +Value: + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +Variable: __REC_STATUS +Value: RECORDING + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +Variable: __DAY +Value: 24 + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602033888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:43:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602033888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:43:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602033888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492587.1 +Linkedid: 1724492587.10281 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:43:07 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000123a +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989602033888 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492587.10282 +DestLinkedid: 1724492587.10281 +DialString: +79602033888@rt_769402 + + +12:43:08 + +Event: DialState +Privilege: call,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Extension: 989602033888 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: INUSE +Variable: RINGTIME_MS +Value: 340 +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: PJSIP/rt_769402-0000123a +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989602033888 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989602033888 +DestPriority: 1 +DestUniqueid: 1724492587.10282 +DestLinkedid: 1724492587.10281 +DialStatus: RINGING + + +12:43:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: PROGRESSTIME_MS +Value: 3756 + + +12:43:16 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989602033888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602033888 +Priority: 1 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6682ad0d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492596.604846 +SentRTP: 1724532584 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x10384870 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37058 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:43:21 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/13-00001239 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: DIALEDPEERNAME +Value: PJSIP/rt_769402-0000123a +Device: PJSIP/rt_769402 +State: INUSE + + +12:43:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602033888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 2 +Uniqueid: 1724492 +Linkedid: 1724492587.10281 +Variable: LOCAL(ARGC) +Value: 6 +Extension: s +Application: GotoIf +AppData: 0?sendEmail + + +12:43:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602033888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +12:43:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: +Priority: 1 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +BridgeUniqueid: 56b09f0e-80fe-41bb-b912-0a1917fadd6c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 2d6ab251-2b2d532ee1b48362c89f0080f0808080@KX-TGP600RU + + +12:43:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: BRIDGEPVTCALLID +Value: 165d3cba-e348-468a-bf1d-292e1ec8b0f1 + + +12:43:26 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602033888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6682ad0d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492606.604634 +SentRTP: 1724612584 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x10384870 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37558 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:43:31 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602033888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6682ad0d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492611.605340 +SentRTP: 1724652584 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0x10384870 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37808 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:43:41 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602033888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6682ad0d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492621.604008 +SentRTP: 1724732424 +SentPackets: 1500 +SentOctets: 240000 +Report0SourceSSRC: 0x10384870 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 38308 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:43:46 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602033888 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724492587.10282 +Linkedid: 1724492587.10281 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6682ad0d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492626.604437 +SentRTP: 1724772584 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0x10384870 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 38558 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:43:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000123a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:43:46 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13-00001239 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 56b09f0e-80fe-41bb-b912-0a1917fadd6c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:43:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_EXTEN +Value: + + +12:43:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: C +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:43:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: MACRO_CONTEXT +Value: +BridgeUniqueid: 56b09f0e-80fe-41bb-b912-0a1917fadd6c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: Hangup +AppData: + + +12:43:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001239 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: RTPAUDIOQOS +Value: ssrc=655051557;themssrc=3855173868;lp=0;rxjitter=0.000000;rxcount=1760;txjitter=0.001125;txcount=1764;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Cause: 16 +Cause-txt: Normal Clearing + + +12:43:46 + +Event: UserEvent +Privilege: +Exten: h +Context: from-internal +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Channel: PJSIP/13-00001239 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602033888 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724492587.10281 +Linkedid: 1724492587.10281 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000170; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 78162769402 +Destination: 989602033888 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000123a +LastApplication: Dial +LastData: PJSIP/+79602033888@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 39 +BillableSeconds: 25 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492587.10281 +UserField: + + +12:43:46 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/13 +ActionID: 10307 + + +12:44:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: s +Application: GotoIf +AppData: 0?initialized +Variable: LOCAL(ARGC) +Value: 3 + + +12:44:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724492669.10283 +Linkedid: 1724 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:44:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +12:44:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG1) +Value: dontcare + + +12:44:29 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:44:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 +Variable: __FROM_DID +Value: 79217365096 + + +12:44:29 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +12:44:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 12 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +12:44:29 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Device: PJSIP/Megafon_3 +State: INUSE + + +12:44:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:44:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +12:44:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 2 +Application: AGI +AppData: agi + + +12:44:31 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +CommandId: 1615500094 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:44:31 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +CommandId: 2090220716 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:44:31 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +CommandId: 316770697 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:44:31 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +CommandId: 1166443450 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +12:44:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 2 +Application: Set +AppData: DEVICE_STATE(Custom +Variable: DB_RESULT +Value: + + +12:44:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 194 +Application: Macro +AppData: user-callerid, +Variable: MACRO_DEPTH +Value: 1 + + +12:44:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-0000123b + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492669.10283 +Linkedid: 1 +Variable: AMPUSER +Value: 79082921828 +Extension: s +Application: Set +AppData: AMPUSER=79082921828 + + +12:44:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: +Linkedid: 1724492669.10283 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7908292182 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:44:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7908 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +12:44:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7908292182 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +12:44:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: e +Exten: 194 +Priority: 23 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +12:44:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: s +Application: GotoIf +AppData: 11?initialized +Variable: LOCAL(ARGC) +Value: 3 + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:44:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:44:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 1 +Priority: 32 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +12:44:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +12:44:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:44:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724492673.10284 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:44:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724492673. +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-124433 +Variable: __YEAR +Value: 2024 + + +12:44:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:44:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +12:44:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:44:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +12:44:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +12:44:33 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +12:44:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 22 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(num-pres)=allowed_not_screened + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: 2 +Application: AGI +AppData: agi + + +12:44:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +CommandId: 59240023 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:44:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +CommandId: 1671815667 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:44:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +CommandId: 1650798854 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +CommandId: 571126818 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +12:44:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492673.1028 +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +12:44:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: AMPUSER +Value: 79539057033 +Extension: s +Application: Set +AppData: AMPUSER=79539057033 + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +12:44:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +12:44:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +12:44:35 + +Event: VarSet +Privilege: dial +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +12:44:35 + +Event: VarSet +Privilege: dial +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +12:44:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +12:44:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +12:44:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 7953 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +12:44:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +12:44:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:44:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +12:44:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 194 +Application: QueueLog +AppData: 194,1724492669.10283,NONE,DID,79217365096 + + +12:44:40 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:44:40 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492669.10 +Linkedid: 1724492669.10283 +Variable: QUEUEJOINTIME +Value: 1724492680 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492680.10285 +Linkedid: 1724492669.10283 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492680.10285 +Linkedid: 1724492669.10283 +Variable: __RINGINGSENT +Value: TRUE + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492680.10285 +Linkedid: 1724492669.10283 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: __FROMQUEUEEXTEN +Value: 79082921828 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: __TIMESTR +Value: 20240824-124429 + + +12:44:40 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000af1;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492680.10285 +LocalOneLinkedid: 1724492669.10283 +LocalTwoChannel: Local/12@from-queue-00000af1;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082921828 +LocalTwoCallerIDName: 79082921828 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492680.10286 +LocalTwoLinkedid: 1724492669.10283 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000af1;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: en +DestAccountCode: + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492680.10287 +Linkedid: 1724492669.10283 +DestChannel: Local/12@from-queue-00000af1;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724492680.10285 +DestLinkedid: 1724492669.10283 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492680.10287 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492680.10287 +Linkedid: 1724492669.10283 +Variable: __DIRECTION +Value: + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000123b + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: __MON_FMT +Value: wav + + +12:44:40 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000af2;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492680.10287 +LocalOneLinkedid: 1724492669.10283 +LocalTwoChannel: Local/13@from-queue-00000af2;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79082921828 +LocalTwoCallerIDName: 79082921828 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492680.10288 +LocalTwoLinkedid: 1724492669.10283 +LocalOptimization: No + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492680.10289 +Linkedid: 1724492669.10283 +DestChannel: Local/13@from-queue-00000af2;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724492680.10287 +DestLinkedid: 1724492669.10283 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492680.10289 +Linkedid: 1724492669.10283 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492680.10289 +Linkedid: 1724492669.10283 +Variable: __DAY +Value: 24 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +12:44:40 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: __FROM_DID +Value: 79217365096 + + +12:44:40 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000af3;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492680.10289 +LocalOneLinkedid: 1724492669.10283 +LocalTwoChannel: Local/10@from-queue-00000af3;2 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 3 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +DestChannel: Local/10@from-queue-00000af3;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492680.10289 +DestLinkedid: 1724492669.10283 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 13 +Application: GotoIf +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG4 +Value: 0 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724492680.10288 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7908 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: CHANEXTENCONTEXT +Value: 13@from-queue-00000af2;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000af2;2 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000af2;2 +Variable: MACRO_DEPTH +Value: 2 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 11 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: s +Application: Set +AppData: CALLERID(number)=79082921828 +Variable: MACRO_DEPTH +Value: 2 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 2 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: 10 +Application: Set +AppData: __FROMQ=true +Variable: QAGENT +Value: 10 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG3 +Value: 0 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000af3;2 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: AMPUSER +Value: 79082921828 +Extension: s +Application: Set +AppData: AMPUSER=79082921828 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: s +Application: Set +AppData: CDR(cnum)=79082921828 +Variable: MACRO_DEPTH +Value: 2 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790829 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79082921828 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79082921828 and 13 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669. +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:44:40 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79082921828-20240824-124440-1724492680.10288 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7908 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: dstring +Priority: 20 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79082921828 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724492680.10288 +Linkedid: 172449266 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: RINGTIME +Value: + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: __FROMQ +Value: true +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_EXTEN +Value: 12 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000af1;2 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000af1;2 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79082921828 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000123d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492680.10291 +Linkedid: 1724492669.10283 +Variable: __PICKUPMARK +Value: 13 + + +12:44:40 + +Event: VarSet +Privilege: +Channel: PJSIP/13-0000123d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492680.10291 +Linkedid: 1724492669.10283 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000123b + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000123d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724492680.10291 +Linkedid: 1724492669.10283 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000123d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492680.10291 +Linkedid: 1724492669.10283 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-si +Value: 0 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492680.10285 +Linkedid: 1724492669.10283 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 790829218 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724492680 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724492680.10286 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +12:44:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79082921828 + + +12:44:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MIXMONITOR_FILENAME +Value: /var/spool +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79082921828-20240824-124440-1724492680.10286.wav,abi(), + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492680.10289 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 790829218 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724492680 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724492680.10290 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79082921828 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MIXMONITOR_FILENAME +Value: /var/spool +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79082921828-20240824-124440-1724492680.10290.wav,abi(), + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492680.1 +Linkedid: 1724492669.10283 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: +Priority: 7 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724492669.10283 +Variable: DEXTEN +Value: 10 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: ctset +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 790829 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: GotoIf +AppData: 1?godial + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: DIALEDPEERNAME +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 10 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1 +Linkedid: 1724492669.10283 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: dstring +Priority: 16 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: ITER +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79082921828 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:44:41 + +Event: Newext +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492680 +Linkedid: 1724492669.10283 +Variable: MACRO_PRIORITY +Value: 50 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: RINGTIME +Value: + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000123e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистрат +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492680.10292 +Linkedid: 1724492669.10283 +Variable: __MIXMON_ID +Value: + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000123e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492680.10292 +Linkedid: 1724492669.10283 +Variable: __EXTTOCALL +Value: 10 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000123e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492680.10292 +Linkedid: 1724492669.1 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000123b + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000123e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724492680.10292 +Linkedid: 1724492669.10283 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +12:44:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000123e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492680.10292 +Linkedid: 1724492669.10283 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000123f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492680.10293 +Linkedid: 1724492669.10283 +Variable: __CA +Value: + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492680.10293 +Linkedid: 1724492669.10283 +Variable: __TTL +Value: 63 + + +12:44:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000123f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724492680.10293 +Linkedid: 1724492669.10283 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +12:44:41 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queu +Exten: s +Priority: 55 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/13-0000123d +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492680.10291 +DestLinkedid: 1724492669.10283 +DialString: 13/sip + + +12:44:41 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +DestChannel: Local/10@from-queue-00000af3;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492680.10292 +DestLinkedid: 1724492669.10283 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +DialString: 10/sip + + +12:44:41 + +Event: RTCPReceived +Privilege: reporting,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842f1958 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8690392.246994 +SentRTP: 45947139 +SentPackets: 349 +SentOctets: 55840 +Report0SourceSSRC: 0x0ec82864 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 5631 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 2 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:44:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME +Value: 2 + + +12:44:43 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +DestChannel: Local/13@from-queue-00000af2;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492680.10287 +DestLinkedid: 1724492669.10283 +DialStatus: RINGING + + +12:44:43 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3645 +DestChannel: Local/12@from-queue-00000af1;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492680.10285 +DestLinkedid: 1724492669.10283 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:44:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 44 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: 194 +Application: Set +AppData: VQ_AANNOUNCE= +Variable: VQ_AANNOUNCE +Value: + + +12:44:44 + +Event: Newext +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 50 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: VQ_MAXWAIT +Value: +Extension: 194 +Application: Set +AppData: VQ_MAXWAIT= + + +12:44:44 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: QUEUEJOINTIME +Value: 1724492684 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Queue: 194 +Position: 2 +Count: 2 +Class: default + + +12:44:44 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 4265 +DestChannel: Local/10@from-queue-00000af3;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492680.10289 +DestLinkedid: 1724492669.10283 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 307 +LastCall: 1724492454 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:44:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000123f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492680.10293 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Hint: PJSIP/12&Custom +Status: 1 +StatusText: InUse +Device: PJSIP/12 +State: INUSE + + +12:44:49 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 336 +LastCall: 1724490389 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/12-0000123f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724492680.10293 +Linkedid: 1724492669.10283 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +12:44:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000123f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724492680.10293 +Linkedid: 1724492669.10283 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +12:44:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000123f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724492680.10293 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000123b)= + + +12:44:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000123f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724492680.10293 +Linkedid: 1724492669.10283 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=12/sip + + +12:44:49 + +Event: Cdr +Privilege: cdr,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +DestChannel: PJSIP/12-0000123f +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724492680.10293 +DestLinkedid: 1724492669.10283 +DialStatus: ANSWER +BridgeUniqueid: a2166fc9-a4cc-432d-b514-5dbd38dc33fc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Source: 79082921828 +Destination: 10 +DestinationContext: ext-local +CallerID: "79082921828" <79082921828> +DestinationChannel: PJSIP/10-0000123e + + +12:44:49 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 19 +Priority: 53 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000af3;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492680.10289 +DestLinkedid: 1724492669.10283 +DialStatus: CANCEL + + +12:44:49 + +Event: QueueCallerLeave +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492680.10289 +Linkedid: 1724492669.10283 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000af3;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492680.10289 +DestLinkedid: 1724492669.10283 +DialStatus: CANCEL + + +12:44:49 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: ARG1 +Value: novm +DestChannel: PJSIP/13-0000123d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492680.10292 +DestLinkedid: 1724492669.10283 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 8 +RingTime: 8 +BridgeUniqueid: 0155130e-4eb1-4542-961f-4090d5cfc0d3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL + + +12:44:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: ARG1 +Value: + + +12:44:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_EXTEN +Value: + + +12:44:49 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: ARG5 +Value: +Cause: 16 + + +12:44:49 + +Event: VarSet +Privilege: dialpl +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:44:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +12:44:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af3;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492680.10290 +Linkedid: 1724492669.10283 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:44:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 55 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: BRIDGEPEER +Value: PJSIP/12-0000123f +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: a2166fc9-a4cc-432d-b514-5dbd38dc33fc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +12:44:49 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: SDl732f01-6e +Family: refreshcallhistory +Channel: Local/12@from-queue-00000af1;1 +ActionID: 10310 +Device: PJSIP/13 +State: NOT_INUSE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492680.10285 +Linkedid: 1724492669.10283 +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: 0155130e-4eb1-4542-961f-4090d5cfc0d3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID + + +12:44:49 + +Event: User +Privilege: call,all +Channel: Local/13@from-queue-00000af2;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492680.10288 +Linkedid: 1724492669.10283 +Variable: MACRO_PRIORITY +Value: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10311 +Source: 79082921828 +Destination: 13 +DestinationContext: ext-local +CallerID: "79082921828" <79082921828> +DestinationChannel: PJSIP/13-0000123d +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 8 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492680.10288 +UserField: +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere + + +12:44:49 + +Event: RTCPSent +Privilege: reporting,all +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-0000123c +ActionID: 10313 +Exten: 194 +Context: ext-queues +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0ec82864 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492689.084534 +SentRTP: 119831 +SentPackets: 727 +SentOctets: 116015 +Report0SourceSSRC: 0x0007007a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 2078 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 425541042 +Report0DLSR: 3.0180 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492691.10294 +Linkedid: 1724492673.10284 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492691.10294 +Linkedid: 1724492673.10284 +Variable: __MOHCLASS +Value: + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-que +Exten: 13 +Priority: 1 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: __TTL +Value: 64 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492691.102 +Linkedid: 1724492673.10284 +Variable: __YEAR +Value: 2024 + + +12:44:51 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000af4;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492691.10294 +LocalOneLinkedid: 1724492673.10284 +LocalTwoChannel: Local/13@from-queue-00000af4;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539057033 +LocalTwoCallerIDName: 79539057033 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492691.10295 +LocalTwoLinkedid: 1724492673.10284 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000af4;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79539057033 +DestConnectedLineName: 79539057033 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492691.10294 +DestLinkedid: 1724492673.10284 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492691.10296 +Linkedid: 1724492673.10284 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492691.10296 +Linkedid: 1724492673.10284 +Variable: __RINGINGSENT +Value: FALSE + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492691.10296 +Linkedid: 1724492673.10284 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: __FROMQUEUEEXTEN +Value: 79539057033 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: < +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: __TIMESTR +Value: 20240824-124433 + + +12:44:51 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000af5;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492691.10296 +LocalOneLinkedid: 1724492673.10284 +LocalTwoChannel: Local/10@from-queue-00000af5;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539057033 +LocalTwoCallerIDName: 79539057033 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492691.10297 +LocalTwoLinkedid: 1724492673.10284 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000af5;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 795390 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +DestChannel: Local/10@from-queue-00000af5;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492691.10296 +DestLinkedid: 1724492673.10284 +DialString: Local/10@from-queue/n +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: __FROMQ +Value: true + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_EXTEN +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000af4;2 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro- +Exten: s +Priority: 5 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000af4;2 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79539057033 + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 4 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: 10 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: __RINGTIMER +Value: 60 +Extension: 10 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: TOUCH_MONITOR +Value: 1724492691.10297 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724492691.10297 + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000af5;2 +Variable: MACRO_DEPTH +Value: 2 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: HOTDESCKCHAN +Value: 10@from-queue-00000af5;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000af5;2 + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) +Variable: MACRO_DEPTH +Value: 2 + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79539057033 + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 2 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +12:44:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79539057033-20240824-124451-1724492691.10295 +Variable: MACRO_DEPTH +Value: 1 + + +12:44:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000af4;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000af4;2 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 172 +Linkedid: 1724492673.10284 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG3 +Value: + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: +Linkedid: 1724492673.10284 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 +Variable: MACRO_DEPTH +Value: 2 + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: dstring +Application: Set +AppData: DEVICES=13 +Variable: DEVICES +Value: 13 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724492 +Linkedid: 1724492673.10284 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1 +Linkedid: 1724492673.10284 +Extension: ctset +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:44:52 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 +Variable: __PICKUPMARK +Value: 10 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial- +Exten: s +Priority: 40 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 7953905703 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:44:52 + +Event: VarSet +Privilege: dialplan, +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: LOCAL(ARG2) +Value: 10 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724492691 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record +Exten: s +Priority: 6 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: recor +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79539057033) + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: DIALSTA +Value: 1 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: PROGRESSTIME_MS +Value: + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492691.10298 +Linkedid: 1724492673.10284 +Extension: recordcheck +Application: Return +AppData: +Variable: __REC_STATUS +Value: RECORDING + + +12:44:52 + +Event: Newexten +Privilege: dial +Channel: PJSIP/13-00001240 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492691.10298 +Linkedid: 1724492673.10284 +Variable: __TIMESTR +Value: 20240824-124451 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492691.10298 +Linkedid: 1724492673.10284 +Variable: __EXTTOCALL +Value: 13 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001240 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492691.10298 +Linkedid: 1724492673.10284 +Variable: __QCONTEXT +Value: 0 + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492691.10298 +Linkedid: 1724492673.10284 +Variable: __DIRECTION +Value: + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001240 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724492691.10298 +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Return +AppData: + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 17244926 +Linkedid: 1724492673.10284 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: MACRO_DEPTH +Value: 2 + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALEDTIME +Value: + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Variable: __REC_STATUS +Value: RECORDING + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Variable: __YEAR +Value: 2024 +DestChannel: PJSIP/13-00001240 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539057033 +DestConnectedLineName: 79539057033 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492691.10298 +DestLinkedid: 1724492673.10284 +DialString: 13/sip + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Variable: __QC_CONFIRM +Value: 0 + + +12:44:52 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: __REVERSAL_REJECT +Value: FALSE +DestChannel: Local/13@from-queue-00000af4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539057033 +DestConnectedLineName: 79539057033 +DestLanguage: ru + + +12:44:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/10-00001241 + + +12:44:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 13 +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +12:44:52 + +Event: RTCPReceived +Privilege: reporting,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +DestChannel: Local/10@from-queue-00000af5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539057033 +DestConnectedLineName: 79539057033 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492691.10296 +DestLinkedid: 1724492673.10284 +DialString: 10/sip +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.3 +SSRC: 0x842f194d +PT: 200(SR) +ReportCount: 1 +SentNTP: 8690381.943984 +SentRTP: 105047022 +SentPackets: 1097 +SentOctets: 175520 +Report0SourceSSRC: 0x2c1fc189 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 21150 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 33809 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:44:54 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 2496 +Device: PJSIP/10 +State: RINGING +DestChannel: PJSIP/10-00001241 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539057033 +DestConnectedLineName: 79539057033 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492691.10299 +DestLinkedid: 1724492673.10284 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing + + +12:44:54 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 307 +LastCall: 1724492454 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +DestChannel: Local/10@from-queue-00000af5;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539057033 +DestConnectedLineName: 79539057033 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492691.10296 +DestLinkedid: 1724492673.10284 +DialStatus: RINGING + + +12:44:54 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/13-00001240 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724492691.10298 +Linkedid: 1724492673.10284 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING + + +12:44:54 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: RINGTIME_MS +Value: 3098 +DestChannel: Local/13@from-queue-00000af4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539057033 +DestConnectedLineName: 79539057033 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492691.10294 +DestLinkedid: 1724492673.10284 +DialStatus: RINGING + + +12:44:56 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: DIALEDPEERNAME +Value: PJSIP/10-00001241 +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse + + +12:44:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 1 +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(CDR(recordingfil +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 307 +LastCall: 1724492454 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:44:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 4 +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Variable: CFIGNORE +Value: +Extension: s +Application: Set +AppData: MASTER_CHANNEL(CFIGNORE)= + + +12:44:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Extension: s +Application: Macro +AppData: blkvm-clr, +Variable: MACRO_CONTEXT +Value: macro-auto-blkvm + + +12:44:57 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724492691.10299 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +12:44:57 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +12:44:57 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: MACRO_PRIORITY +Value: +DestChannel: Local/10@from-queue-00000af5;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539057033 +DestConnectedLineName: 79539057033 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492691.10296 +DestLinkedid: 1724492673.10284 +DialStatus: ANSWER +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +BridgeUniqueid: 1b95d956-8ff6-47de-b2f5-dfd71b7fafbe +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:44:57 + +Event: VarSet +Privilege: dialplan,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Device: Queue +State: NOT_INUSE +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +DestChannel: Local/13@from-queue-00000af4;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539057033 +DestConnectedLineName: 79539057033 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492691.10294 +DestLinkedid: 1724492673.10284 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Queue: 194 +Position: 1 +Count: 0 + + +12:44:57 + +Event: VarSet +Privilege: dialplan,all +Device: Local/13@from-queue +State: NOT_INUSE +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1 +Linkedid: 1724492673.10284 +DestChannel: PJSIP/13-00001240 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539057033 +DestConnectedLineName: 79539057033 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724492691.10298 +DestLinkedid: 1724492673.10284 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 12 +RingTime: 5 +BridgeUniqueid: 6e498b39-220d-4912-b4d5-45084386b6c7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL +Variable: ARG2 +Value: 13 + + +12:44:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: +Linkedid: 1724492673.10284 +Variable: ARG5 +Value: + + +12:44:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Extension: h +Application: Macro +AppData: hangupcall, +Cause-txt: Answered elsewhere + + +12:44:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492691.10296 +Linkedid: 1724492673.10284 +Variable: BRIDGEPEER +Value: PJSIP/Megafon_3-0000123c +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Device: PJSIP/13 +State: NOT_INUSE +BridgeUniqueid: 6e498b39-220d-4912-b4d5-45084386b6c7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +12:44:57 + +Event: UserEvent +Privilege: user,all +Channel: Local/13@from-queue-00000af4;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492691.10295 +Linkedid: 1724492673.10284 +Variable: MACRO_CONTEXT +Value: +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 79539057033 +Destination: 13 +DestinationContext: ext-local +CallerID: "79539057033" <79539057033> +DestinationChannel: PJSIP/13-00001240 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492691.10295 +UserField: +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcal + + +12:44:57 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/13 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: BRIDGEPVTCALLID +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 1b95d956-8ff6-47de-b2f5-dfd71b7fafbe +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10315 + + +12:44:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492680.10285 +Linkedid: 1724492669.10283 +Variable: RTPAUDIOQOSRTTBRIDGED +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:44:59 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492680.10285 +Linkedid: 1724492669.10283 +Variable: BRIDGEPVTCALLID +Value: +DestChannel: Local/12@from-queue-00000af1;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79082921828 +DestConnectedLineName: 79082921828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492680.10285 +DestLinkedid: 1724492669.10283 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 8 +TalkTime: 11 +Reason: caller +BridgeUniqueid: 0155130e-4eb1-4542-961f-4090d5cfc0d3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:44:59 + +Event: BridgeDestroy +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: +BridgeUniqueid: 0155130e-4eb1-4542-961f-4090d5cfc0d3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:44:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: ANSWEREDTIME_MS +Value: 10206 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE +BridgeUniqueid: a2166fc9-a4cc-432d-b514-5dbd38dc33fc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:44:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:44:59 + +Event: VarSet +Privilege: dialpla +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_CONTEXT +Value: + + +12:44:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +12:44:59 + +Event: +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af1;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492680.10286 +Linkedid: 1724492669.10283 +Variable: MACRO_EXTEN +Value: +Source: 79082921828 +Destination: 12 +DestinationContext: ext-local +CallerID: "79082921828" <79082921828> +DestinationChannel: PJSIP/12-0000123f +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 18 +BillableSeconds: 10 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492680.10286 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10317 +Extension: s +Application: Hangup +AppData: + + +12:44:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000123f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79082921828 +ConnectedLineName: 79082921828 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492680.10293 +Linkedid: 1724492669.10283 +Variable: RTPAUDIOQOSLOSS +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE +BridgeUniqueid: a2166fc9-a4cc-432d-b514-5dbd38dc33fc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10318 + + +12:44:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492669.10283 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 0 +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10319 +Extension: s +Application: Hangup +AppData: + + +12:44:59 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/Megafon_3-0000123b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79082921828 +CallerIDName: 79082921828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724492669.10283 +Linkedid: 1724492669.10283 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000289; mintxmes=085.280986; maxtxmes=085.367289; avgtxmes=085.350025; stdevtxmes=000.034520; +Cause: 16 +Cause-txt: + + +12:44:59 + +Event: Cdr +Privilege: cdr,all +AccountCode: +Source: 79082921828 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79082921828" <79082921828> +Channel: PJSIP/Megafon_3-0000123b +DestinationChannel: Local/10@from-queue-00000af3;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 8 +BillableSeconds: 8 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492669.10283 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10320 + + +12:45:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492691.10296 +Linkedid: 1724492673.10284 +Variable: RTPAUDIOQOSJITTERBRIDGED +Value: minrxjitter=000.000000;maxrxjitter=000.002625;avgrxjitter=000.000228;stdevrxjitter=000.000335;mintxjitter=000.000250;maxtxjitter=000.095000;avgtxjitter=000.014554;stdevtxjitter=000.032846; + + +12:45:13 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000335; mintxmes=085.367249; maxtxmes=085.367289; avgtxmes=085.367283; stdevtxmes=000.000014; + + +12:45:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: MACRO_EXTEN +Value: h +BridgeUniqueid: 6e498b39-220d-4912-b4d5-45084386b6c7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:45:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Source: 79539057033 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79539057033" <79539057033> +DestinationChannel: Local/13@from-queue-00000af4;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 23 +BillableSeconds: 23 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492673.10284 +UserField: + + +12:45:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000123c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcal +Exten: s +Priority: 4 +Uniqueid: 1724492673.10284 +Linkedid: 1724492673.10284 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +12:45:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492691.10 +Linkedid: 1724492673.10284 +Variable: BRIDGEPEER +Value: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10322 +BridgeUniqueid: 6e498b39-220d-4912-b4d5-45084386b6c7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:45:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: ARG1 +Value: novm +BridgeUniqueid: 1b95d956-8ff6-47de-b2f5-dfd71b7fafbe +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:45:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 795390570 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: ARG4 +Value: + + +12:45:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 7953 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:45:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001241 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001500;avgrxjitter=000.001137;stdevrxjitter=000.000228;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 1b95d956-8ff6-47de-b2f5-dfd71b7fafbe +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +12:45:13 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af5;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539057033 +ConnectedLineName: 79539057033 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492691.10299 +Linkedid: 1724492673.10284 +Variable: RTPAUDIOQOSMES +Value: 1 +Source: 79539057033 +Destination: 10 +DestinationContext: ext-local +CallerID: "79539057033" <79539057033> +DestinationChannel: PJSIP/10-00001241 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 22 +BillableSeconds: 16 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492691.10297 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 308 +LastCall: 1724492713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10323 + + +12:45:13 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539057033 +CallerIDName: 79539057033 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492691.10297 +Linkedid: 1724492673.10284 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10324 + + +12:46:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: __DIRECTION +Value: + + +12:46:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 172449280 +Linkedid: 1724492802.10300 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: NOW=1724492802 + + +12:46:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 172449280 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: __FROMEXTEN=unknown +Variable: __TIMESTR +Value: 20240824-124642 + + +12:46:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,in,1 +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:46:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARGC) +Value: 3 + + +12:46:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 5 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: in +Application: Return +AppData: +Variable: ARGC +Value: + + +12:46:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 6 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: returnhere +Value: 1 +Extension: 79217365096 +Application: Gosub +AppData: app-blacklist-check,s,1() + + +12:46:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 9 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: 79217365096 +Application: GotoIf +AppData: 0? +Variable: GOSUB_RETVAL +Value: + + +12:46:42 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Extension: 79217365096 +Application: Answer +AppData: +Variable: __RINGINGSENT +Value: TRUE +Device: PJSIP/Megafon_3 +State: INUSE + + +12:46:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:46:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 21 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(name-pres)=allowed_not_screened + + +12:46:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: 2 +Application: AGI +AppData: agi + + +12:46:44 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +CommandId: 941516528 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:46:44 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +CommandId: 173734273 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:46:44 + +Event: AGIExecStart +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +CommandId: 137411501 +Command: EXEC Goto truestate + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 16 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DEVICE_STATE(Custom + + +12:46:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724492802.10300 +Variable: TOUCH_MONITOR +Value: 1724492802.10300 + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492802.10300 +Linkedid: 172449280 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-00001242 +Variable: MACRO_DEPTH +Value: 1 + + +12:46:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 8 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: HOTDESCKCHAN +Value: Megafon_3-00001242 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001242 + + +12:46:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 1 + + +12:46:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 1 + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: s +Application: NoOp +AppData: Macro Depth is 1 +Variable: MACRO_DEPTH +Value: 1 + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TTL=64 + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CDR(cnam)=79602082828 + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 3 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: __FROMQUEUEEXTEN +Value: 79602082828 +Extension: 194 +Application: Set +AppData: __FROMQUEUEEXTEN=79602082828 + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/Megafon_3-00001242) + + +12:46:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: MacroExit +AppData: + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 8 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: QCIDPP +Value: +Extension: 194 +Application: Set +AppData: QCIDPP= + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 14 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: __RVOL_MODE +Value: dontcare +Extension: 194 +Application: ExecIf +AppData: 0?Set(__ALERT_INFO=) + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 19 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: QRETRY +Value: +Extension: 194 +Application: Set +AppData: QRETRY= + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 24 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: VQ_GOSUB +Value: +Extension: 194 +Application: Set +AppData: VQ_GOSUB= + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724492802.10300 +Linkedid: 1 +Variable: QPOSITION +Value: +Extension: 194 +Application: Set +AppData: QPOSITION= + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:46:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: LOCAL(ARG3) +Value: 194 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) + + +12:46:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +12:46:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: __SIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +12:46:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +12:46:53 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:46:53 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492802.10 +Linkedid: 1724492802.10300 +Variable: QUEUEJOINTIME +Value: 1724492813 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492813.10301 +Linkedid: 1724492802.10300 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492813.10301 +Linkedid: 1724492802.10300 +Variable: __RINGINGSENT +Value: TRUE + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492813.10301 +Linkedid: 1724492802.10300 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: __FROMQUEUEEXTEN +Value: 79602082828 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: __TIMESTR +Value: 20240824-124642 + + +12:46:53 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000af6;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492813.10301 +LocalOneLinkedid: 1724492802.10300 +LocalTwoChannel: Local/12@from-queue-00000af6;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79602082828 +LocalTwoCallerIDName: 79602082828 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492813.10302 +LocalTwoLinkedid: 1724492802.10300 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000af6;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: en +DestAccountCode: + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492813.10303 +Linkedid: 1724492802.10300 +DestChannel: Local/12@from-queue-00000af6;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724492813.10301 +DestLinkedid: 1724492802.10300 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492813.10303 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492813.10303 +Linkedid: 1724492802.10300 +Variable: __DIRECTION +Value: + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001242 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: __MON_FMT +Value: wav + + +12:46:53 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000af7;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492813.10303 +LocalOneLinkedid: 1724492802.10300 +LocalTwoChannel: Local/13@from-queue-00000af7;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79602082828 +LocalTwoCallerIDName: 79602082828 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492813.10304 +LocalTwoLinkedid: 1724492802.10300 +LocalOptimization: No + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492813.10305 +Linkedid: 1724492802.10300 +DestChannel: Local/13@from-queue-00000af7;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724492813.10303 +DestLinkedid: 1724492802.10300 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492813.10305 +Linkedid: 1724492802.10300 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492813.10305 +Linkedid: 1724492802.10300 +Variable: __DAY +Value: 24 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +12:46:53 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: __FROM_DID +Value: 79217365096 + + +12:46:53 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000af8;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492813.10305 +LocalOneLinkedid: 1724492802.10300 +LocalTwoChannel: Local/10@from-queue-00000af8;2 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 3 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +DestChannel: Local/10@from-queue-00000af8;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492813.10305 +DestLinkedid: 1724492802.10300 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 10 +Application: GotoIf +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG4 +Value: 0 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724492813.10306 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7960 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: CHANEXTENCONTEXT +Value: 10@from-queue-00000af8;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000af8;2 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000af8;2 +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 11 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: CALLERID(number)=79602082828 +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: 12 +Application: Set +AppData: __FROMQ=true +Variable: QAGENT +Value: 12 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG3 +Value: 0 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000af6;2 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: AMPUSER +Value: 79602082828 +Extension: s +Application: Set +AppData: AMPUSER=79602082828 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: CDR(cnum)=79602082828 +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 796020 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79602082828 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79602082828 and 10 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802. +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:46:53 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79602082828-20240824-124653-1724492813.10306 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: QAGENT +Value: 13 +Extension: 13 +Application: Set +AppData: QAGENT=13 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: DB_RESULT +Value: 0 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +12:46:53 + +Event: VarSet +Privilege: dialp +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: ARG5 +Value: 0 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724492813.10304 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000af7;2 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79602082828 + + +12:46:53 + +Event: VarSet +Privilege: dialpla +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 796 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.1030 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 7960208 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 +Variable: THISDIAL +Value: PJSIP/10 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: dstring +Application: NoOp +AppData: Debug +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: s +Application: GotoIf +AppData: 0?cnum +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Aler + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: __EXTTOCALL +Value: 13 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: LOCAL(ARG2) +Value: 13 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: NOW +Value: 1724492813 +Extension: s +Application: Set +AppData: NOW=1724492813 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: MACRO_DEPTH +Value: 1 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79602082828) +Variable: MACRO_DEPTH +Value: 1 + + +12:46:53 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-13-79602082828-20240824-124653-1724492813.10304.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79602082828-20240824-124653-1724492813.10304.wav,abi(), + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +12:46:53 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 172449281 +Linkedid: 1724492802.10300 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001243 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492813.10307 +Linkedid: 1724492802.10300 +Variable: __PICKUPMARK +Value: 10 + + +12:46:53 + +Event: VarSet +Privilege: +Channel: PJSIP/10-00001243 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492813.10307 +Linkedid: 1724492802.10300 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001242 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001243 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724492813.10307 +Linkedid: 1724492802.10300 +Variable: __DIRECTION +Value: +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001243 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492813.10307 +Linkedid: 1724492802.10300 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-si +Value: 0 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/10@from-queue-00000af8;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492813.10305 +DestLinkedid: 1724492802.10300 +DialString: 10/sip +DialStatus: RINGING + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:46:53 + +Event: New +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724492813.10304 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 17 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +12:46:53 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_P +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +12:46:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: DIALEDTIME +Value: + + +12:46:54 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000af6;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492813.10301 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: +AppData: __MONTH=08 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 6 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: re +Priority: 16 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492813.10302 +Linkedid: 1724 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79602082828-20240824-124653-1724492813.10302 +Variable: MACRO_DEPTH +Value: 1 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPT +Value: Local/12@from-queue-00000af6;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000af6;2 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG2 +Value: + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 796 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724492813.10302 +Linkedid: 17244 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: dstring +Application: Set +AppData: DEVICES=12 +Variable: DEVICES +Value: 12 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +12:46:54 + +Event: VarS +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: dstring +Application: ExecIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 796020828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALE + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 172449 +Linkedid: 1724492802.10300 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 +Device: Local/10@from-queue +State: INUSE + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_1 + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +12:46:54 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/13-00001244 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: PROGRESSTIME_MS +Value: + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001244 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492813.10308 +Linkedid: 1724492802.10300 +Variable: __MON_FMT +Value: wav + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001244 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492813.10308 +Linkedid: 1724492802.10300 +Variable: __RINGTIMER +Value: 60 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001244 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492813.10308 +Linkedid: 1724492802.10300 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001244 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724492813.10308 +Linkedid: 1724492802.10300 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001245 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492813.10309 +Linkedid: 1724492802.10300 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: While +AppData: 0 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,al +Channel: PJSIP/12-00001245 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492813.10309 +Linkedid: 1724492802.10300 +Variable: __FROMEXTEN +Value: 79602082828 + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001245 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492813.10309 +Linkedid: 1724492802.10300 +Variable: __FROMQ +Value: true + + +12:46:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001245 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492813.10309 +Linkedid: 1724492802.10300 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:46:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001245 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724492813.10309 +Linkedid: 1724492802.10300 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +12:46:54 + +Event: DialBegin +Privilege: call,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-00001245 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru + + +12:46:54 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +DestChannel: Local/12@from-queue-00000af6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492813.10303 +DestLinkedid: 1724492802.10300 +DialString: 13/sip +Device: Local/13@from-queue +State: INUSE +DialStatus: RINGING + + +12:46:56 + +Event: DialState +Privilege: call,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 3201 +DestChannel: PJSIP/10-00001243 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492813.10307 +DestLinkedid: 1724492802.10300 +DialStatus: RINGING + + +12:46:56 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 308 +LastCall: 1724492713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001245 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724492813.10309 +Linkedid: 1724492802.10300 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +12:46:56 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: RINGTIME_MS +Value: 3581 +Device: PJSIP/12 +State: RINGING +DestChannel: Local/12@from-queue-00000af6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492813.10301 +DestLinkedid: 1724492802.10300 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:46:57 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME +Value: 4 + + +12:46:57 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: RINGTIME_MS +Value: 4160 +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +DestChannel: Local/13@from-queue-00000af7;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492813.10303 +DestLinkedid: 1724492802.10300 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:46:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001243 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492813.10307 +Linkedid: 1724492802.10300 +Variable: MACRO_PRIORITY +Value: 1 +Device: PJSIP/10 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse + + +12:46:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001243 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724492813.10307 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 308 +LastCall: 1724492713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Set +AppData: CFIGNORE= + + +12:46:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: FORWARD_CONTEXT +Value: from-internal +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal + + +12:46:58 + +Event: VarSet +Privilege: d +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001242)= +Variable: SHARED(BLKVM) +Value: + + +12:46:58 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001243 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724492813.10307 +Linkedid: 1724492802.10300 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:46:58 + +Event: BridgeCreate +Privilege: call,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +DestChannel: PJSIP/10-00001243 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724492813.10307 +DestLinkedid: 1724492802.10300 +DialStatus: ANSWER +BridgeUniqueid: 65209afd-c66c-47cc-888c-541db0b + + +12:46:58 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 7 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492813.10305 +Linkedid: 1724492802.10300 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 65209afd-c66c-47cc-888c-541db0b98714 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE +Variable: BRIDGEPVTCALLID +Value: b660e76e-773d-44c1-afab-bf8444079647 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:46:58 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000af6;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492813.10301 +Linkedid: 1724492802.10300 +DestChannel: Local/12@from-queue-00000af6;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492813.10301 +DestLinkedid: 1724492802.10300 +DialStatus: CANCEL +Cause: 26 + + +12:46:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/12-00001245 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724492813.10309 +DestLinkedid: 1724492802.10300 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +Variable: MACRO_DEPTH +Value: CANCEL + + +12:46:58 + +Event: VarS +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: ARG1 +Value: +DestChannel: PJSIP/13-00001244 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724492813.10308 +DestLinkedid: 1724492802.10300 +DialStatus: CANCEL + + +12:46:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: DIALSTATUS +Value: CANCEL +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:46:58 + +Event: Va +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: ARG1 +Value: + + +12:46:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: ARG3 +Value: +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:46:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_EXTEN +Value: h +Device: Local/12@from-queue +State: NOT_INUSE +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:46:58 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/12@from-queue-00000af6;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724492813.10302 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Device: PJSIP/12 +State: NOT_INUSE + + +12:46:59 + +Event: DeviceStateChang +Privilege: call,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Source: 79602082828 +Destination: 12 +DestinationContext: ext-local +CallerID: "79602082828" <79602082828> +DestinationChannel: PJSIP/12-00001245 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492813.10302 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE + + +12:46:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Queue: 194 +Position: 1 +Count: 0 +Variable: MACRO_EXTEN +Value: +DestChannel: Local/10@from-queue-00000af8;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602082828 +DestConnectedLineName: 79602082828 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492813.10305 +DestLinkedid: 1724492802.10300 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +RingTime: 5 +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: 6cd0bde8-bbf4-4ac4-ac2f-72f11bc352c1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: Hangup +AppData: + + +12:46:59 + +Event: UserEvent +Privilege: user, +Channel: Local/13@from-queue-00000af7;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492813.10304 +Linkedid: 1724492802.10300 +Variable: MACRO_PRIORITY +Value: 1 +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10329 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 79602082828 +Destination: 13 +DestinationContext: ext-local +CallerID: "79602082828" <79602082828> +DestinationChannel: PJSIP/13-00001244 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492813.10304 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE + + +12:46:59 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 6cd0bde8-bbf4-4ac4-ac2f-72f11bc352c1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000af8;1 + + +12:47:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492813.10307 +Linkedid: 1724492802.10300 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:47:47 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492813.10307 +Linkedid: 1724492802.10300 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 65209afd-c66c-47cc-888c-541db0b98714 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:47:47 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 65209afd-c66c-47cc-888c-541db0b98714 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: m +Exten: s +Priority: 55 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: ARG2 +Value: 10 + + +12:47:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: ARG5 +Value: + + +12:47:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:47:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001243 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492813.10307 +Linkedid: 1724492802.10300 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +12:47:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000af8;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492813.10306 +Linkedid: 1724492802.10300 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 309 +LastCall: 1724492867 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: +Source: 79602082828 +Destination: 10 +DestinationContext: ext-local +CallerID: "79602082828" <79602082828> +DestinationChannel: PJSIP/10-00001243 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 54 +BillableSeconds: 48 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492813.10306 +UserField: +Variable: MACRO_EXTEN +Value: 0 + + +12:47:47 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@from-queue-00000af8;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602082828 +ConnectedLineName: 79602082828 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492813.10305 +Linkedid: 1724492802.10300 +Variable: BRIDGEPEER +Value: +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: 6cd0bde +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: NOT_INUSE + + +12:47:47 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 6cd0bde8-bbf4-4ac4-ac2f-72f11bc352c1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +12:47:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Extension: s +Application: Hangup +AppData: +Variable: +Value: +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +TalkTime: 49 +Reason: agent + + +12:47:47 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/Megafon_3-00001242 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602082828 +CallerIDName: 79602082828 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 4 +Uniqueid: 1724492802.10300 +Linkedid: 1724492802.10300 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000164; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=079.914933; stdevtxmes=018.065032; +Source: 79602082828 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79602082828" <79602082828> +DestinationChannel: Local/12@from-queue-00000af6;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492802.10300 +UserField: + + +12:47:47 + +Event: UserEvent +Privilege: user,all +Device: PJSIP/Megafon_3 +State: NOT_INUSE +AccountCode: +Source: 79602082828 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79602082828" <79602082828> +Channel: PJSIP/MEGAFON_3 +DestinationChannel: Local/10@from-queue-00000af8;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 54 +BillableSeconds: 54 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492802.10300 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10334 + + +12:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724492914.10310 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724492914. +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-124834 +Variable: __YEAR +Value: 2024 + + +12:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:48:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +12:48:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:48:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +12:48:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +12:48:35 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +12:48:35 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +12:48:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: 2 +Application: AGI +AppData: agi + + +12:48:36 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +CommandId: 1079034410 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:48:36 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +CommandId: 1158457259 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: DB_RESULT +Value: +Extension: 2 +Application: Set +AppData: DEVICE_STATE(Custom + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: 194 +Application: Macro +AppData: user-callerid, +Variable: MACRO_DEPTH +Value: 1 + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-00001246 + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492914.10310 +Linkedid: 1 +Variable: AMPUSER +Value: 79539035274 +Extension: s +Application: Set +AppData: AMPUSER=79539035274 + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7953903527 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7953 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7953903527 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: e +Exten: 194 +Priority: 23 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: s +Application: GotoIf +AppData: 11?initialized +Variable: LOCAL(ARGC) +Value: 3 + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:48:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 1 +Priority: 32 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +12:48:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +12:48:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Extension: 194 +Application: QueueLog +AppData: 194,1724492914.10310,NONE,DID,79217365096 + + +12:48:45 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:48:45 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492914.10 +Linkedid: 1724492914.10310 +Variable: QUEUEJOINTIME +Value: 1724492925 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492925.10311 +Linkedid: 1724492914.10310 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492925.10311 +Linkedid: 1724492914.10310 +Variable: __RINGINGSENT +Value: TRUE + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492925.10311 +Linkedid: 1724492914.10310 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: __FROMQUEUEEXTEN +Value: 79539035274 + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: __TIMESTR +Value: 20240824-124834 + + +12:48:45 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000af9;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492925.10311 +LocalOneLinkedid: 1724492914.10310 +LocalTwoChannel: Local/12@from-queue-00000af9;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539035274 +LocalTwoCallerIDName: 79539035274 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492925.10312 +LocalTwoLinkedid: 1724492914.10310 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000af9;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: en +DestAccountCode: + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492925.10313 +Linkedid: 1724492914.10310 +DestChannel: Local/12@from-queue-00000af9;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724492925.10311 +DestLinkedid: 1724492914.10310 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492925.10313 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492925.10313 +Linkedid: 1724492914.10310 +Variable: __DIRECTION +Value: + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001246 + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: __MON_FMT +Value: wav + + +12:48:45 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000afa;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492925.10313 +LocalOneLinkedid: 1724492914.10310 +LocalTwoChannel: Local/13@from-queue-00000afa;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539035274 +LocalTwoCallerIDName: 79539035274 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492925.10314 +LocalTwoLinkedid: 1724492914.10310 +LocalOptimization: No + + +12:48:45 + +Event: Va +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: DB_RESULT +Value: EXTENSION + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: MACRO_EXTEN +Value: 12 + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724492925.10 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000af9;2 + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: CHANEXTEN +Value: 12 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from +Variable: MACRO_DEPTH +Value: 2 + + +12:48:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +12:48:45 + +Event: Newexten +Privilege: dialp +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: CALLERID(name)=79539035274 +Variable: MACRO_DEPTH +Value: 2 + + +12:48:45 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-qu +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492925.10315 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +DestChannel: Local/13@from-queue-00000afa;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724492925.10313 +DestLinkedid: 1724492914.10310 +DialString: Local/13@from-queue/n + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492925.10315 +Linkedid: 1724492914.10310 +Variable: __FROMQUEUEEXTEN +Value: 79539035274 + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492925.10315 +Linkedid: 1724492914.10310 +Variable: __TIMESTR +Value: 20240824-124834 + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Extension: 13 +Application: Set +AppData: __FROMQ=true +Variable: __YEAR +Value: 2024 + + +12:48:45 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000afb;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724492925.10315 +LocalOneLinkedid: 1724492914.10310 +LocalTwoChannel: Local/10@from-queue-00000afb;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539035274 +LocalTwoCallerIDName: 79539035274 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724492925.10316 +LocalTwoLinkedid: 1724492914.10310 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000afb;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: en +DestAccountCode: +DestContext: from-queue + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +DestChannel: Local/10@from-queue-00000afb;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492925.10315 +DestLinkedid: 1724492914.10310 +DialString: Local/10@from-queue/n +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 +Variable: DB_RESULT +Value: 0 + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG1 +Value: novm + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +12:48:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: CALLERID(number)=79539035274 +Variable: MACRO_DEPTH +Value: 2 + + +12:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 2 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: +Priority: 54 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: 3 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795390 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CDR(cnam)=79539035274 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 24 +Extension: 10 +Application: Set +AppData: QAGENT=10 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: __RINGTIMER +Value: 60 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG4 +Value: 0 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724492925.10316 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000afb;2 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79539035274 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724492925.10316 +Linkedid: 172449291 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:48:46 + +Event: Newexten +Privilege: dialplan, +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79539035274) + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CDR(cnum)=79539035274 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492925.10314 +Linkedid: 1724492 +Variable: MACRO_EXTEN +Value: 13 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: +Priority: 4 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 6 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: __TIMESTR +Value: 20240824-124845 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-124845 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 172 +Linkedid: 1724492914.10310 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 795 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +12:48:46 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: LOCAL(ARG3) +Value: 13 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79539035274) + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724492925.10314 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79539035274-20240824-124845-1724492925.10314.wav,abi(), + + +12:48:46 + +Event: VarS +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79539035274-20240824-124845-1724492925.10314.wav + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Extension: exten +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 17244929 +Linkedid: 1724492914.10310 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724492925.10 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=13) + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: LOCAL(ARGC) +Value: 0 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000af9;2 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795390352 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +12:48:46 + +Event: Newexten +Privilege: +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: ITER +Value: 1 +Extension: dstring +Application: Set +AppData: ITER=1 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: __PICKUPMARK +Value: 10 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 7953903527 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-124845 +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724492925.10 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 17 +Linkedid: 1724492914.10310 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: LOCAL(ARG3) +Value: 10 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79539035274) +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 24 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79539035274-20240824-124845-1724492925.10316.wav + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: DB_RESULT +Value: 12 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914. +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: MACRO_DEPTH +Value: 2 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 33 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: DB_RESULT +Value: PJSIP/12 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: dstring +Priority: 14 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +12:48:46 + +Event: Newexten +Privilege: +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724492925. +Linkedid: 1724492914.10310 +Variable: DB_RESULT +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: exten +Priority: 12 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: ARGC +Value: +Extension: exten +Application: Return +AppData: + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:48:46 + +Event: Newe +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +12:48:46 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/13-00001247 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: PROGRESSTIME_MS +Value: + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001247 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492925.10317 +Linkedid: 1724492914.10310 +Variable: __MON_FMT +Value: wav + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001247 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492925.10317 +Linkedid: 1724492914.10310 +Variable: __RINGTIMER +Value: 60 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001247 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492925.10317 +Linkedid: 1724492914.10310 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001247 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724492925.10317 +Linkedid: 1724492914.10310 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724492925 +Linkedid: 1724492914.10310 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DB_RESULT +Value: 10 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: GOSUB_RETVAL +Value: +Extension: dstring +Application: Return +AppData: + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79539035274 +Variable: MACRO_DEPTH +Value: 2 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +DestChannel: PJSIP/13-00001247 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492925.10317 +DestLinkedid: 1724492914.10310 +DialString: 13/sip +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) +Device: Local/13@from-queue +State: INUSE + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: RINGTIME_MS +Value: + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:48:46 + +Event: VarS +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: __CWIGNORE +Value: TRUE +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +12:48:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724492925.10316 +Linkedid: 172449291 +Extension: s +Application: GotoIf +AppData: 1?godial +Variable: MACRO_DEPTH +Value: 2 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: ANSWEREDTIME +Value: + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001248 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492925.10318 +Linkedid: 1724492914.10310 +Variable: __KEEPCID +Value: TRUE + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001248 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492925.10318 +Linkedid: 1724492914.1 +Variable: __MOHCLASS +Value: + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001248 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724492925.10318 +Linkedid: 1724492914.10310 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:48:46 + +Event: VarSet +Privilege: call,all +Channel: PJSIP/10-00001249 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/13@from-queue-00000afa;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492925.10313 +DestLinkedid: 1724492914.10310 +DialStatus: RINGING + + +12:48:46 + +Event: VarSet +Privilege: dia +Channel: PJSIP/10-00001249 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Variable: __FROMEXTEN +Value: 79539035274 + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001249 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Variable: __FROMQ +Value: true + + +12:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001249 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-00001248 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 + + +12:48:46 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Device: Local/12@from-queue +State: INUSE +DestChannel: Local/12@from-queue-00000af9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492925.1 +DestLinkedid: 1724492914.10310 +DialString: 10/sip +DialStatus: RINGING + + +12:48:46 + +Event: DeviceStateChange +Privilege: call,all +Device: Local/10@from-queue +State: INUSE + + +12:48:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001247 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724492925.10317 +Linkedid: 1724492914.10310 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +12:48:49 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: RINGTIME_MS +Value: 3383 +DestChannel: Local/13@from-queue-00000afa;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492925.10313 +DestLinkedid: 1724492914.10310 +DialStatus: RINGING +Device: PJSIP/13 +State: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:48:49 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 55 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME +Value: 3 +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing + + +12:48:49 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 309 +LastCall: 1724492867 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +DestChannel: PJSIP/10-00001249 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724492925.10319 +DestLinkedid: 1724492914.10310 +DialStatus: RINGING +Variable: RINGTIME_MS +Value: 3691 + + +12:48:49 + +Event: DialState +Privilege: call,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 4273 +DestChannel: PJSIP/12-00001248 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724492925.10318 +DestLinkedid: 1724492914.10310 +DialStatus: RINGING + + +12:48:51 + +Event: DeviceSta +Privilege: dialplan,all +Channel: PJSIP/10-00001249 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm + + +12:48:51 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 309 +LastCall: 1724492867 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-00001249 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 795390 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +12:48:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001249 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +12:48:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001249 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001246)= + + +12:48:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001249 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +12:48:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001249 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Extension: s +Application: AppDial +AppData: (Out +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-00001249 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724492925.10319 +DestLinkedid: 1724492914.10310 +DialStatus: ANSWER +BridgeUniqueid: fc970428-a14e-431c-86e4-906122efa850 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:48:51 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: fc970428-a14e-431c-86e4-906122efa850 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: BRIDGEPVTCALLID +Value: 3f189bc0-e353-4a62-8ea6-12c083249b4f +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000afb;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492925.10315 +DestLinkedid: 1724492914.10310 +DialStatus: ANSWER + + +12:48:51 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 10 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492925.10311 +Linkedid: 1724492914.10310 +DestChannel: Local/12@from-queue-00000af9;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492925.10311 +DestLinkedid: 1724492914.10310 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:48:51 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: Local/10@from-queue-00000afb;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724492925.10315 +DestLinkedid: 1724492914.10310 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +RingTime: 6 +BridgeUniqueid: 194abf9a-3dd5-4951-8aa9-daec33240324 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:48:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_PRIORITY +Value: 3 + + +12:48:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +12:48:51 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afa;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 13 +ConnectedLineName: Ре +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:48:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 1 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +DestChannel: PJSIP/12-00001248 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539035274 +DestConnectedLineName: 79539035274 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724492925.10318 +DestLinkedid: 1724492914.10310 +DialStatus: CANCEL +Variable: MACRO_CONTEXT +Value: ext-local + + +12:48:51 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 7953 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_EXTEN +Value: +Source: 79539035274 +Destination: 13 +DestinationContext: ext-local +CallerID: "79539035274" <79539035274> +DestinationChannel: PJSIP/13-00001247 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492925.10314 +UserField: + + +12:48:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79539035274 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724492925.10314 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Extension: h +Application: Macro +AppData: hangupcall, +Cause-txt: Answered elsewhere + + +12:48:51 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere + + +12:48:51 + +Event: UserEvent +Privilege: user,all +Device: Local/13@from-queue +State: NOT_INUSE +Channel: PJSIP/12 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724492925.10315 +Linkedid: 1724492914.10310 +Cause: 26 +Cause-txt: Answered elsewhere +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhi +ActionID: 10338 +BridgeUniqueid: 194abf9a-3dd5-4951-8aa9-daec33240324 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:48:51 + +Event: Cdr +Privilege: cdr,all +Channel: Local/12@from-queue-00000af9;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492925.10312 +Linkedid: 1724492914.10310 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10340 +Source: 79539035274 +Destination: 12 +DestinationContext: ext-local +CallerID: "79539035274" <79539035274> +DestinationChannel: PJSIP/12-00001248 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION + + +12:48:51 + +Event: VarSet +Privilege: dialplan,all +Device: Local/12@from-queue +State: NOT_INUSE +BridgeUniqueid: 194abf9a-3dd5-4951-8aa9-daec33240324 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000afb;1 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989531602285 +Priority: 1 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: ARG3 +Value: +Extension: 989531602285 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEP +Value: + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724492963.1 +Linkedid: 1724492963.10320 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: MACRO_DEPTH +Value: 1 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724492 +Linkedid: 1724492963.10320 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-us +Exten: s +Priority: 14 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=12) +Variable: MACRO_DEPTH +Value: 1 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 +Variable: MACRO_DEPTH +Value: 1 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 26 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(GROUP(concurrency_limit)=12) + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: CDR(cnum)=12 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989531602285 +Priority: 2 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: 989531602285 +Application: Gosub +AppData: sub-record-check,s,1(out,989531602285,dontcare) +Variable: L +Value: out + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724492963.10320 +Linkedid: 17 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724492963.103 +Linkedid: 1724492963.10320 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989531602285-12-20240824-124923-1724492963.10320 +Variable: RECFROMEXTEN +Value: 12 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __RECORD_ID +Value: PJSIP/12-0000124a + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: out +Application: Return +AppData: +Variable: ARGC +Value: + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989531602285 +Priority: 6 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: _ROUTENAME +Value: Megafon +Extension: 989531602285 +Application: Set +AppData: MOHCLA + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989531602285 +Priority: 10 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: _NODEST +Value: +Extension: 989531602285 +Application: Set +AppData: _NODEST= + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 6 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_NUMBER=+79531602285 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=) + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 12 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALLOWTHISROUTE=YES) + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: MACRO_DEPTH +Value: 2 + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 22 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(EMERGENCYCID=) + + +12:49:23 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 39 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=prohib_passed_screen) + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 14 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 18 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) +Variable: MACRO_DEPTH +Value: 1 + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: s +Application: Macro +AppData: dialout-trunk-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 21 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 0?bypass,1 + + +12:49:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +79531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 23 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(name,i)=CID + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 27 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: __~HASH~SIPHEADERS~Alert-Info~ +Value: unset +Extension: s +Application: Set +AppData: HASH(__SIPHEADERS,Alert-Info)=unset + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: s +Application: Dial +AppData: PJSIP/+79531602285@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79531602285^989531602285^6^1724492963^^78162769402) +Variable: RINGTIME +Value: + + +12:49:23 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492963.10321 +Linkedid: 1724492963.10320 +Variable: ROUTENAME +Value: Megafon + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492963.10321 +Linkedid: 1724492963.10320 +Variable: __YEAR +Value: 2024 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_76940 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989531602285 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724492963.10321 +Linkedid: 1724492963.10320 +Variable: LOCAL(ARGC) +Value: 1 +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989531602285 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 5 +Uniqueid: 1724492963.1032 +Linkedid: 1724492963.10320 +Extension: s +Application: Set +AppData: sipheader=unset +Variable: WHILE_0 +Value: func-apply-sipheaders,s,4 + + +12:49:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989531602285 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 12 +Uniqueid: 1724492963.10321 +Linkedid: 1724492963.10320 +Extension: s +Application: EndWhile +AppData: +Variable: END_WHILE_0 +Value: func-apply-sipheaders,s,13 + + +12:49:23 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-0000124b +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989531602285 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492963.10321 +DestLinkedid: 1724492963.10320 +DialString: + + +12:49:23 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 + + +12:49:23 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Extension: 989531602285 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: INUSE +Variable: RINGTIME_MS +Value: 438 +DestChannel: PJSIP/rt_769402-0000124b +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989531602285 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989531602285 +DestPriority: 1 +DestUniqueid: 1724492963.10321 +DestLinkedid: 1724492963.10320 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:49:24 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: PROGRESSTIME_MS +Value: 1401 +DestChannel: PJSIP/rt_769402-0000124b +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989531602285 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989531602285 +DestPriority: 1 +DestUniqueid: 1724492963.10321 +DestLinkedid: 1724492963.10320 +DialStatus: PROGRESS + + +12:49:29 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: RTPAUDIOQOSMES +Value: minrxmes=000.000000; maxrxmes=000.000000; avgrxmes=000.000000; stdevrxmes=000.000319; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 127 + + +12:49:29 + +Event: SoftHangupRequest +Privilege: call,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_PRIORITY +Value: + + +12:49:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124b +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989531602285 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989531602285 +Priority: 1 +Uniqueid: 1724492963.10321 +Linkedid: 1724492963.10320 +Extension: h +Application: Macro +AppData: hangupcall +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001 + + +12:49:29 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 127 +Cause-txt: Interworking, unspecified +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10341 +Source: 78162769402 +Destination: 989531602285 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000124b +LastApplication: Dial +LastData: PJSIP/+79531602285@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: + + +12:49:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001750;avgrxjitter=000.000913;stdevrxjitter=000.000319;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Extension: s +Application: Hangup +AppData: +Device: PJSIP/rt_769402 +State: NOT_INUSE + + +12:49:29 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724492963.10320 +Linkedid: 1724492963.10320 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 127 +Cause-txt: Interworking, unspecified +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10342 + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989531602285 +Priority: 1 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724492983.1 +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12-0000124c + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=12 + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: DB_RESULT +Value: 12 + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:49:43 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=12 + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724492983.10322 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989531602285 +Priority: 2 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989531602285 +Application: Gosub +AppData: sub-record-check,s,1(out,989531602285,dontcare) + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724492983.10322 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724492983.10322 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: __CALLFILENAME +Value: out-989531602285-12-20240824-124943-1724492983.10322 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989531602285-12-20240824-124943-1724492983.10322 + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989531602285-12-20240824-124943-1724492983.10322.wav + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989531602285 +Priority: 7 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983. +Variable: MOHCLASS +Value: default +Extension: 989531602285 +Application: Set +AppData: MOHCLASS=default + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989531602285 +Priority: 11 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_EXTEN +Value: 989531602285 +Extension: 989531602285 +Application: Macro +AppData: dialout-trunk,6,+79531602285,,off + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=12) +Variable: DB_RESULT +Value: + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:49:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:49:43 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:49:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:49:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79531602285 + + +12:49:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:49:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:49:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79531602285 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79531602285) + + +12:49:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:49:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Extension: s +Application: Dial +AppData: PJSIP/+79531602285@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79531602285^989531602285^6^1724492983^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:49:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: PROGRESSTIME +Value: + + +12:49:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492983.10323 +Linkedid: 1724492983.10322 +Variable: __REC_STATUS +Value: RECORDING + + +12:49:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724492983.10323 +Linkedid: 1724492983.10322 +Variable: __DAY +Value: 24 + + +12:49:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989531602285 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724492983.10323 +Linkedid: 1724492983.10322 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:49:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989531602285 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724492983.10323 +Linkedid: 1724492983.10322 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:49:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989531602285 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724492983.1 +Linkedid: 1724492983.10322 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:49:44 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000124d +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989531602285 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724492983.10323 +DestLinkedid: 1724492983.10322 +DialString: +79531602285@rt_769402 + + +12:49:44 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 28 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Extension: 989531602285 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: INUSE +Variable: RINGTIME_MS +Value: 491 +DestChannel: PJSIP/rt_769402-0000124d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989531602285 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989531602285 +DestPriority: 1 +DestUniqueid: 1724492983.10323 +DestLinkedid: 1724492983.10322 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 1 +StatusText: InUse + + +12:49:44 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:49:45 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: PROGRESSTIME_MS +Value: 1441 +DestChannel: PJSIP/rt_769402-0000124d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989531602285 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989531602285 +DestPriority: 1 +DestUniqueid: 1724492983.10323 +DestLinkedid: 1724492983.10322 +DialStatus: PROGRESS + + +12:49:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:49:48 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-00001249 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: fc970428-a14e-431c-86e4-906122efa850 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +12:49:48 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: fc970428-a14e-431c-86e4-906122efa850 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/10-00001249 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Variable: RTPAUDIOQOS +Value: ssrc=1094527977;themssrc=3906858818;lp=0;rxjitter=0.000000;rxcount=2832;txjitter=0.000500;txcount=2859;rlp=0;rtt=0.000000;rxmes=0.000000;txm + + +12:49:48 + +Event: VarSet +Privilege: dialpl +Channel: PJSIP/10-00001249 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539035274 +ConnectedLineName: 79539035274 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724492925.10319 +Linkedid: 1724492914.10310 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +12:49:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Cause: 16 +Extension: h + + +12:49:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 1 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:49:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 310 +LastCall: 1724492988 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_CONTEXT +Value: + + +12:49:49 + +Event: DeviceS +Privilege: call,all +Channel: Local/10@from-queue-00000afb;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724492925.10316 +Linkedid: 1724492914.10310 +Cause: 16 +Variable: BRIDGEPEER +Value: 1 +BridgeUniqueid: 194abf9a-3dd5-4951-8aa9-daec33240324 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +Source: 79539035274 +Destination: 10 +DestinationContext: ext-local +CallerID: "79539035274" <79539035274> +DestinationChannel: PJSIP/10-00001249 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 63 +BillableSeconds: 57 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492925.10316 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10343 + + +12:49:49 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 194abf9a-3dd5-4951-8aa9-daec33240324 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724492914.10310 +Linkedid: 17244929 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +12:49:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10344 + + +12:49:49 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/Megafon_3-00001246 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539035274 +CallerIDName: 79539035274 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724492914.10310 +Linkedid: 1724492914.10310 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000166; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=080.676896; stdevtxmes=016.828749; +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10345 +Source: 79539035274 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79539035274" <79539035274> +DestinationChannel: Local/12@from-queue-00000af9;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492914.10310 +UserField: + + +12:49:49 + +Event: Cdr +Privilege: cdr,all +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 6 +TalkTime: 57 +Reason: agent +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-00001246 +ActionID: 10346 +AccountCode: +Source: 79539035274 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79539035274" <79539035274> +DestinationChannel: Local/10@from-queue-00000afb;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 63 +BillableSeconds: 63 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724492914.10310 +UserField: + + +12:49:50 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000124d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989531602285 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989531602285 +Priority: 1 +Uniqueid: 1724492983.10323 +Linkedid: 1724492983.10322 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6a0228e7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724492990.413997 +SentRTP: 1724532824 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x50f027c5 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 43055 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:49:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000314; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 127 +DestChannel: PJSIP/rt_769402-0000124d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989531602285 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989531602285 +DestPriority: 1 +DestUniqueid: 1724492983.10323 +DestLinkedid: 1724492983.10322 +DialStatus: CANCEL + + +12:49:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:49:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989531602285 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989531602285 +Priority: 1 +Uniqueid: 1724492983.10323 +Linkedid: 1724492983.10322 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.002125;avgrxjitter=000.000797;stdevrxjitter=000.000273;mintxjitter= +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:49:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/rt_769402 +State: NOT_INUSE + + +12:49:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Source: 78162769402 +Destination: 989531602285 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000124d +LastApplication: Dial +LastData: PJSIP/+79531602285@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724492983.10322 +UserField: + + +12:49:51 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989531602285 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724492983.10322 +Linkedid: 1724492983.10322 +Cause: 127 +Cause-txt: Interworking, unspecified +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10348 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989210220141 +Priority: 1 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493065.1 +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12-0000124e + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=12 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: DB_RESULT +Value: 12 + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:51:05 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=12 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493065.10324 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989210220141 +Priority: 2 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989210220141 +Application: Gosub +AppData: sub-record-check,s,1(out,989210220141,dontcare) + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493065.10324 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493065.10324 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: __CALLFILENAME +Value: out-989210220141-12-20240824-125105-1724493065.10324 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989210220141-12-20240824-125105-1724493065.10324 + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989210220141-12-20240824-125105-1724493065.10324.wav + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989210220141 +Priority: 7 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065. +Variable: MOHCLASS +Value: default +Extension: 989210220141 +Application: Set +AppData: MOHCLASS=default + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989210220141 +Priority: 11 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_EXTEN +Value: 989210220141 +Extension: 989210220141 +Application: Macro +AppData: dialout-trunk,6,+79210220141,,off + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=12) +Variable: DB_RESULT +Value: + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79210220141 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79210220141 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79210220141) + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79210220141 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79210220141 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Extension: s +Application: Dial +AppData: PJSIP/+79210220141@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79210220141^989210220141^6^1724493065^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79210220141 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: PROGRESSTIME +Value: + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493065.10325 +Linkedid: 1724493065.10324 +Variable: __REC_STATUS +Value: RECORDING + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493065.10325 +Linkedid: 1724493065.10324 +Variable: __DAY +Value: 24 + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989210220141 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493065.10325 +Linkedid: 1724493065.10324 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:51:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989210220141 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493065.10325 +Linkedid: 1724493065.10324 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:51:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000124f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989210220141 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493065.1 +Linkedid: 1724493065.10324 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:51:05 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-0000124f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989210220141 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989210220141 +Priority: 1 +Uniqueid: 1724493065.10325 +Linkedid: 1724493065.10324 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000124f +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989210220141 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493065.10325 +DestLinkedid: 1724493065.10324 +DialString: +79210220141@rt_769402 + + +12:51:05 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989210220141 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 28 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: RINGTIME_MS +Value: 338 +DestChannel: PJSIP/rt_769402-0000124f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989210220141 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989210220141 +DestPriority: 1 +DestUniqueid: 1724493065.10325 +DestLinkedid: 1724493065.10324 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Device: PJSIP/12 +State: INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:51:06 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989210220141 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: PROGRESSTIME_MS +Value: 1010 +DestChannel: PJSIP/rt_769402-0000124f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989210220141 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989210220141 +DestPriority: 1 +DestUniqueid: 1724493065.10325 +DestLinkedid: 1724493065.10324 +DialStatus: PROGRESS + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724493070.10326 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724493070. +Linkedid: 1724493070.10326 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-125110 +Variable: __YEAR +Value: 2024 + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +12:51:10 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/Megafon_3 +State: INUSE +EventTV: 2024-08-24T12 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 10 +SessionID: 78c1083a-0e2f532e6e352d5634910080f0808080@KX-TGP600RU +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.12/5080 +Challenge: +UsingPassword: 1 +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524895499 +Priority: 1 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Extension: 989524895499 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 172449 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-us +Exten: s +Priority: 6 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-u +Exten: s +Priority: 9 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10 +Variable: MACRO_DEPTH +Value: 1 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=10) + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_ +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратур +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?report + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=) +Variable: MACRO_DEPTH +Value: 1 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 26 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: s +Application: ExecIf +AppData: 1?Set(GROUP(concurrency_limit)=10) +Variable: MACRO_DEPTH +Value: 1 + + +12:51:10 + +Event: Newexten +Privilege: dial +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CDR(cnam)=Регистратура_3 + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524895499 +Priority: 2 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: 98 +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record +Exten: s +Priority: 3 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: NOW +Value: 1724493070 +Extension: s +Application: Set +AppData: NOW=1724493070 + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: s +Priority: 8 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: __FROMEXTEN +Value: 10 +Extension: s +Application: Set +AppData: __FROMEXTEN=10 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 1 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: out +Application: NoOp +AppData: Outbound Recording Check from 10 to 989524895499 + + +12:51:10 + +Event: Newexten +Privilege: dialplan, +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 5 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: out +Application: Gosub +AppData: recordcheck,1(yes,out,989524895499) +Variable: LOCAL(ARGC) +Value: 3 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=10) +Variable: __REC_POLICY_MODE +Value: YES + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=PJSIP/10-00001251 +Variable: __MIXMON_ID +Value: + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: recordcheck +Application: Return +AppData: +Variable: GOSUB_RETV +Value: + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524895499 +Priority: 5 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: 989524895499 +Application: Set +AppData: _ROUTEID=1 +Variable: _ROUTEID +Value: 1 + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Р +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524895499 +Priority: 9 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: _EMAILNOTIFICATION +Value: FALSE +Extension: 989524895499 +Application: Set +AppData: _EMAILNOTIFICATION=FALSE + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524895499 +Priority: 11 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: ARG3 +Value: +Extension: 989524895499 +Application: Macro +AppData: dialout-trunk,6,+79524895499,,off + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 3 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: GosubIf +AppData: 0?sub-pincheck,s,1() + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 6 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_NUMBER=+79524895499 + + +12:51:10 + +Event: VarSet +Privilege: di +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 9 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: DIAL_TRUNK_OPTIONS +Value: T +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=T + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_CONTEXT +Value: macro-dialo + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 3 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: all + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 7 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: HOTDESKEXTEN +Value: 10 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 11 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: s +Application: Set +AppData: ALLOWTHISROUTE=NO +Variable: ALLOWTHISROUTE +Value: NO + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 30 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)=78162769402) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 34 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)=10) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 38 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=prohib_passed_screen) +Variable: MACRO_DEPTH +Value: 2 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 41 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_PRIORITY +Value: 11 +Extension: s +Application: Set +AppData: CDR(outbound_cnam)= + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 17 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=M(setmusic^default)T) +Variable: MACRO_DEPTH +Value: 1 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000125 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Extension: s +Application: Macro +AppData: dialout-trunk-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 21 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?bypass,1 + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 23 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(name,i)=CID + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 27 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=) + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524895499 +ConnectedLineName: C +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: DIALEDTIME +Value: +Extension: s +Application: Dial +AppData: PJSIP/+79524895499@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79524895499^989524895499^6^1724493070^^78162769402) + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001252 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493070.10328 +Linkedid: 1724 +Variable: EMAILNOTIFICATION +Value: FALSE + + +12:51:10 + +Event: VarSet +Privilege: dialplan,al +Channel: PJSIP/rt_769402-00001252 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493070.10328 +Linkedid: 1724493070.10327 +Variable: __FROMEXTEN +Value: 10 + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001252 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524895499 +Priority: 1 +Uniqueid: 1724493070.10328 +Linkedid: 1724493070.10327 +Variable: LOCAL(ARGC) +Value: 1 +Extension: 989524895499 +Application: AppDial +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001252 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 17 +Linkedid: 1724493070.10327 +Extension: s +Application: While +AppData: 1 +Variable: func-apply-sipheaders_s_4 +Value: 0 + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001252 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 12 +Uniqueid: 1724493070.10328 +Linkedid: 17244930 +Extension: s +Application: ExecIf +AppData: 0?Set(PJSIP_HEADER(add,Alert-Info)=unset) +Variable: sipheader +Value: unset + + +12:51:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001252 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724493070.10328 +Linkedid: 1724493070.10327 +Variable: ARG1 +Value: +Extension: s +Application: Return +AppData: + + +12:51:10 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +DestChannel: PJSIP/rt_769402-00001252 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989524895499 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989524895499 +DestPriority: 1 +DestUniqueid: 1724493070.10328 +DestLinkedid: 1724493070.10327 +DialString: +79524895499@rt_769402 +Extension: 989524895499 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 345 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse +Device: PJSIP/10 +State: INUSE +Queue: 195 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint + + +12:51:10 + +Event: Newexten +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 310 +LastCall: 1724492988 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: 79217365096 +Application: Wait +AppData: 1 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:51:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +12:51:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: 2 +Application: AGI +AppData: agi + + +12:51:12 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +CommandId: 851590822 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:51:12 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +CommandId: 512043934 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +12:51:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.103 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: TOUCH_MONITOR +Value: 1724493070.10326 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724493070.10326 + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-00001250 +Variable: MACRO_DEPTH +Value: Megafon_3-00001250 + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 172 +Linkedid: 1724493070.10326 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001250 +Variable: MACRO_DEPTH +Value: 1 + + +12:51:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:51:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Macro Depth is 1 + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: s +Application: Set +AppData: __TTL=64 +Variable: __TTL +Value: 64 + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: s +Application: Set +AppData: CDR(cnam)=79211687951 +Variable: MACRO_DEPTH +Value: 1 + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 3 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: 194 +Application: Set +AppData: __FROMQUEUEEXTEN=79211687951 +Variable: MACRO_PRIORITY +Value: + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/Megafon_3-00001250) +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001250 + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: s +Application: MacroExit +AppData: +Variable: ARG1 +Value: + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 8 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: QCIDPP= + + +12:51:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare +Variable: __RVOL_MODE +Value: dontcare + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 19 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: 194 +Application: Set +AppData: QRETRY= +Variable: QRINGOPTS +Value: R + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 24 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: 194 +Application: Set +AppData: VQ_GOSUB= +Variable: QGOSUB +Value: + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 29 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: 194 +Application: Set +AppData: QPOSITION= +Variable: +Value: + + +12:51:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: s +Application: NoOp +AppData: Recordings initialized +Variable: LOCAL(ARGC) +Value: 3 + + +12:51:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:51:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 1 +Priority: 33 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: __SIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE + + +12:51:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +12:51:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Extension: 194 +Application: QueueLog +AppData: 194,1724493070.10326,NONE,DID,79217365096 + + +12:51:20 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:51:20 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493070.10 +Linkedid: 1724493070.10326 +Variable: QUEUEJOINTIME +Value: 1724493080 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:51:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493080.10329 +Linkedid: 1724493070.10326 +Class: default +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:51:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493080.10329 +Linkedid: 1724493070.10326 +Variable: __RINGINGSENT +Value: TRUE + + +12:51:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493080.10329 +Linkedid: 1724493070.10326 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: __FROMQUEUEEXTEN +Value: 79211687951 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 13 +Priority: 1 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: __TIMESTR +Value: 20240824-125110 + + +12:51:21 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000afc;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493080.10329 +LocalOneLinkedid: 1724493070.10326 +LocalTwoChannel: Local/13@from-queue-00000afc;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79211687951 +LocalTwoCallerIDName: 79211687951 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493080.10330 +LocalTwoLinkedid: 1724493070.10326 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000afc;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79211687951 +DestConnectedLineName: 79211687951 +DestLanguage: en +DestAccountCode: + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +DestChannel: Local/13@from-queue-00000afc;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724493080.10329 +DestLinkedid: 1724493070.10326 +DialString: Local/13@from-queue/n +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: __FROMQ +Value: true + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_EXTEN +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000afc;2 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493080.10330 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000afc;2 + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 17 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79211687951 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493080.10329 +Linkedid: 1724493070.10326 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +12:51:21 + +Event: VarSet +Privilege: dialpla +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724493080.10330 +Linkedid: 172449307 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724493080.10330 +Linkedid: 1724 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79211687951-20240824-125120-1724493080.10330.wav,abi(), + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000afc;2 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: DEXTEN +Value: 13 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: EXTHASCW= + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 17244930 +Linkedid: 1724493070.10326 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:51:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 52 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Variable: PROGRESSTIME_MS +Value: + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Variable: __FROMEXTEN +Value: 79211687951 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Variable: __QC_CONFIRM +Value: 0 + + +12:51:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJ +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Variable: __RINGINGSENT +Value: TRUE + + +12:51:21 + +Event: VarSet +Privilege: +Channel: PJSIP/13-00001253 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:51:21 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-00001253 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79211687951 +DestConnectedLineName: 79211687951 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493080.10331 +DestLinkedid: 1724493070.10326 +DialString: 13/sip + + +12:51:21 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000124f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989210220141 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989210220141 +Priority: 1 +Uniqueid: 1724493065.10325 +Linkedid: 1724493065.10324 +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/13@from-queue-00000afc;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79211687951 +DestConnectedLineName: 79211687951 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493080.10329 +DestLinkedid: 1724493070.10326 +DialStatus: RINGING +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6e549ec7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493081.325789 +SentRTP: 1724613064 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0xfb20b89e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 29109 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:51:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +12:51:23 + +Event: DialState +Privilege: call,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/13 +State: RINGING +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: RINGTIME_MS +Value: 2314 +DestChannel: Local/13@from-queue-00000afc;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79211687951 +DestConnectedLineName: 79211687951 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493080.10329 +DestLinkedid: 1724493070.10326 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:51:26 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000124f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989210220141 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989210220141 +Priority: 1 +Uniqueid: 1724493065.10325 +Linkedid: 1724493065.10324 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6e549ec7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493086.326339 +SentRTP: 1724653064 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0xfb20b89e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 29359 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:51:31 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000124f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989210220141 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989210220141 +Priority: 1 +Uniqueid: 1724493065.10325 +Linkedid: 1724493065.10324 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6e549ec7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493091.326525 +SentRTP: 1724693064 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0xfb20b89e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 29609 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 24 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:51:33 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-00001251 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: PROGRESSTIME_MS +Value: 23048 +DestChannel: PJSIP/rt_769402-00001252 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989524895499 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989524895499 +DestPriority: 1 +DestUniqueid: 1724493070.10328 +DestLinkedid: 1724493070.10327 +DialStatus: PROGRESS + + +12:51:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001252 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524895499 +Priority: 1 +Uniqueid: 1724493070.10328 +Linkedid: 1724493070.10327 +Variable: LOCAL(AR +Value: + + +12:51:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001252 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493070.10328 +Linkedid: 1724493070.10327 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: +Device: PJSIP/rt_769402 +State: RINGINUSE + + +12:51:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001252 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493070.10328 +Linkedid: 1724493070.10327 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-00001252 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989524895499 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493070.10328 +DestLinkedid: 1724493070.10327 +DialStatus: ANSWER +BridgeUniqueid: d4b5fdb0-a626-442f-b8c4-71488d8ca075 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:51:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: BRIDGEPVTCALLID +Value: e81aec5d-d549-4ba6-a61a-5f82740b2343 + + +12:51:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989210220141 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000150; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 127 +DestChannel: PJSIP/rt_769402-0000124f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989210220141 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989210220141 +DestPriority: 1 +DestUniqueid: 1724493065.10325 +DestLinkedid: 1724493065.10324 +DialStatus: CANCEL + + +12:51:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989210220141 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:51:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000124e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989210220141 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +12:51:35 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989210220141 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989210220141 +Priority: 1 +Uniqueid: 1724493065.10325 +Linkedid: 1724493065.10324 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:51:35 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 78162769402 +Destination: 989210220141 +DestinationContext: from-internal +CallerID: "" <78162769402> +Channel: PJSIP/12-0000124e +DestinationChannel: PJSIP/rt_769402-0000124f +LastApplication: Dial +LastData: PJSIP/+79210220141@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 30 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724493065.10324 +UserField: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989210220141 +ConnectedLineName: CID +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493065.10324 +Linkedid: +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Cause: 127 +Cause-txt: Interworking, unspecified + + +12:51:35 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989210220141 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724493065.10324 +Linkedid: 1724493065.10324 +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/12 +State: NOT_INUSE +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10350 + + +12:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Variable: MACRO_EXTEN +Value: s +Hint: PJSIP/13&Custom +Status: 1 +StatusText: InUse +Extension: s +Application: Macro +AppData: auto-blkvm + + +12:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 2 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/13 +State: INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 423 +LastCall: 1724492274 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Set +AppData: __MACRO_RESULT= + + +12:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Variable: +Value: from-internal +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal + + +12:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Extension: s +Application: Macro +AppData: blkvm-clr, +Variable: MA +Value: + + +12:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_CONTEXT +Value: macro- + + +12:51:36 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +12:51:36 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-queu +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +BridgeUniqueid: 1fea981f-ec32-4424-b3d4-0c451bd4e8fd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: 26cf95b0-80e4-434a-907a-b219f8f9f9fd + + +12:51:36 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000afc;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79211687951 +DestConnectedLineName: 79211687951 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493080.10329 +DestLinkedid: 1724493070.10326 +DialStatus: ANSWER +Device: Local/13@from-queue +State: INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 16 +RingTime: 15 +BridgeUniqueid: 2b2c5ecd-cf6b-4d69-949b-3e1ffac7a90 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:51:36 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 2b2c5ecd-cf6b-4d69-949b-3e1ffac7a90a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: BRIDGEPEER +Value: Local/13@from-queue-00000afc;1 + + +12:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001252 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:51:37 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-00001251 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: d4b5fdb0-a626-442f-b8c4-71488d8ca075 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001251 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_EXTEN +Value: + + +12:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001252 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493070.10328 +Linkedid: 1724493070.10327 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001750;avgrxjitter=000.000827;stdevrxjitter=000.000305;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall +BridgeUniqueid: d4b5fdb0-a626-442f-b8c4-71488d8ca075 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: P +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10351 + + +12:51:37 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/10-00001251 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Source: 78162769402 +Destination: 989524895499 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001252 +LastApplication: Dial +LastData: PJSIP/+79524895499@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 27 +BillableSeconds: 3 +Disposition: ANSWERED + + +12:51:37 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: h +Context: from-internal +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Channel: PJSIP/10-00001251 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724493070.10327 +Linkedid: 1724493070.10327 +Variable: RTPAUDIOQOSMES +Value: minrxmes=000.000000; maxrxmes=000.000000; avgrxmes=000.000000; stdevrxmes=000.000369; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 310 +LastCall: 1724492988 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:51:37 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10352 + + +12:51:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:51:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724493113.10332 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:51:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724493113. +Linkedid: 1724493113.10332 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-125153 +Variable: __YEAR +Value: 2024 + + +12:51:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:51:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +12:51:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:51:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +12:51:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +12:51:53 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +12:51:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: 2 +Application: AGI +AppData: agi + + +12:51:55 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +CommandId: 1893548297 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:51:55 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +CommandId: 1169906701 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 12 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: 2 +Application: GotoIf +AppData: 0?falsegoto + + +12:51:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724493113.10332 +Linkedid: 1724493 +Extension: 194 +Application: Macro +AppData: user-callerid, +Variable: MACRO_CONTEXT +Value: ext-queues + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +12:51:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=79217311746 + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=Megafon_3 +Variable: MACRO_DEPTH +Value: 1 + + +12:51:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=79217311746) + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME= + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?continue + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=79217311746 + + +12:51:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:51:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: MACRO_PRIORITY +Value: 4 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset + + +12:51:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 3 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: GOSUB_RETVAL=TRUE + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 5 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: _DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: 194 +Application: ExecIf +AppData: 1?Set(_DIAL_OPTIONS=HhTtrM(auto-blkvm)) + + +12:51:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 11 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: VQ_CIDPP +Value: +Extension: 194 +Application: Set +AppData: QAINFO= + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 16 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: 194 +Application: Set +AppData: VQ_JOINMSG= +Variable: VQ_JOINMSG +Value: + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 21 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: QOPTIONS +Value: tR +Extension: 194 +Application: Set +AppData: QOPTIONS=tR + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 27 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: VQ_AGI +Value: +Extension: 194 +Application: Set +AppData: VQ_AGI= + + +12:51:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 31 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113 +Variable: LOCAL(ARG1) +Value: q +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record- +Exten: s +Priority: 14 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: GotoIf +AppData: 1?checkaction + + +12:51:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: recordcheck +Application: Return +AppData: +Variable: LOCAL(ARGC) +Value: 3 + + +12:51:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: ARG1 +Value: +Extension: s +Application: Return +AppData: + + +12:51:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 40 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: 194 +Application: Set +AppData: VQ_CONFIRMMSG= +Variable: VQ_CONFIRMMSG +Value: + + +12:51:55 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x778ec99a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493115.717385 +SentRTP: 1724646216 +SentPackets: 2219 +SentOctets: 354887 +Report0SourceSSRC: 0x000e0075 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 4366 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 454463258 +Report0DLSR: 3.0700 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524843790 +Priority: 1 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493123.1 +Linkedid: 1724493123.10333 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-00001255 + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493123.10333 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:52:03 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493123.10333 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524843790 +Priority: 2 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989524843790 +Application: Gosub +AppData: sub-record-check,s,1(out,989524843790,dontcare) + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493123.10333 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493123.10333 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: __CALLFILENAME +Value: out-989524843790-10-20240824-125203-1724493123.10333 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989524843790-10-20240824-125203-1724493123.10333 + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989524843790-10-20240824-125203-1724493123.10333.wav + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524843790 +Priority: 7 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123. +Variable: MOHCLASS +Value: default +Extension: 989524843790 +Application: Set +AppData: MOHCLASS=default + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524843790 +Priority: 11 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: MACRO_EXTEN +Value: 989524843790 +Extension: 989524843790 +Application: Macro +AppData: dialout-trunk,6,+79524843790,,off + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79524843790 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79524843790 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79524843790) + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Extension: s +Application: Dial +AppData: PJSIP/+79524843790@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79524843790^989524843790^6^1724493123^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: PROGRESSTIME +Value: + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001256 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493123.10334 +Linkedid: 1724493123.10333 +Variable: __REC_STATUS +Value: RECORDING + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001256 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493123.10334 +Linkedid: 1724493123.10333 +Variable: __DAY +Value: 24 + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001256 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493123.10334 +Linkedid: 1724493123.10333 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:52:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001256 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493123.10334 +Linkedid: 1724493123.10333 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:52:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001256 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493123.1 +Linkedid: 1724493123.10333 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:52:03 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-00001256 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524843790 +Priority: 1 +Uniqueid: 1724493123.10334 +Linkedid: 1724493123.10333 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001256 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989524843790 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493123.10334 +DestLinkedid: 1724493123.10333 +DialString: +79524843790@rt_769402 + + +12:52:03 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/10 +State: INUSE +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Variable: RINGTIME_MS +Value: 325 +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +DestChannel: PJSIP/rt_769402-00001256 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989524843790 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989524843790 +DestPriority: 1 +DestUniqueid: 1724493123.10334 +DestLinkedid: 1724493123.10333 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 310 +LastCall: 1724492988 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Extension: 194 +Application: QueueLog +AppData: 194,1724493113.10332,NONE,DID,79217365096 + + +12:52:04 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:52:04 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493113.10 +Linkedid: 1724493113.10332 +Variable: QUEUEJOINTIME +Value: 1724493124 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493124.10335 +Linkedid: 1724493113.10332 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493124.10335 +Linkedid: 1724493113.10332 +Variable: __RINGINGSENT +Value: TRUE + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493124.10335 +Linkedid: 1724493113.10332 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: __FROMQUEUEEXTEN +Value: 79217311746 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: __TIMESTR +Value: 20240824-125153 + + +12:52:04 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000afd;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493124.10335 +LocalOneLinkedid: 1724493113.10332 +LocalTwoChannel: Local/12@from-queue-00000afd;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79217311746 +LocalTwoCallerIDName: 79217311746 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493124.10336 +LocalTwoLinkedid: 1724493113.10332 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000afd;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79217311746 +DestConnectedLineName: 79217311746 +DestLanguage: en +DestAccountCode: + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +DestChannel: Local/12@from-queue-00000afd;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724493124.10335 +DestLinkedid: 1724493113.10332 +DialString: Local/12@from-queue/n +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: __FROMQ +Value: true + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_EXTEN +Value: 12 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000afd;2 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493124.10336 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000afd;2 + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 17 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79217311746 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79217311746 +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493124.10335 +Linkedid: 1724493113.10332 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +12:52:04 + +Event: VarSet +Privilege: dialpla +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724493124.10336 +Linkedid: 172449311 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724493124.10336 +Linkedid: 1724 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79217311746-20240824-125204-1724493124.10336.wav,abi(), + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000afd;2 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: DEXTEN +Value: 12 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: EXTHASCW= + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 17244931 +Linkedid: 1724493113.10332 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +12:52:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 1?godial + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 52 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001257 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Variable: PROGRESSTIME_MS +Value: + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001257 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Variable: __FROMEXTEN +Value: 79217311746 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001257 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Variable: __QC_CONFIRM +Value: 0 + + +12:52:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJ +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Variable: __RINGINGSENT +Value: TRUE + + +12:52:04 + +Event: VarSet +Privilege: +Channel: PJSIP/12-00001257 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217311746 +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:52:04 + +Event: Newstate +Privilege: call,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-00001257 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217311746 +DestConnectedLineName: 79217311746 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493124.10337 +DestLinkedid: 1724493113.10332 +DialString: 12/sip + + +12:52:04 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +DestChannel: Local/12@from-queue-00000afd;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217311746 +DestConnectedLineName: 79217311746 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493124.10335 +DestLinkedid: 1724493113.10332 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE + + +12:52:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001257 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217311746 +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +12:52:06 + +Event: DialState +Privilege: call,all +Device: PJSIP/12 +State: RINGING +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: RINGTIME_MS +Value: 2427 +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: Local/12@from-queue-00000afd;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217311746 +DestConnectedLineName: 79217311746 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493124.10335 +DestLinkedid: 1724493113.10332 +DialStatus: RINGING + + +12:52:18 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-00001257 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217311746 +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/12 +State: INUSE +Hint: PJSIP/12&Custom +Status: 1 +StatusText: InUse +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n + + +12:52:18 + +Event: Newexten +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 337 +LastCall: 1724492699 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/12-00001257 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: MACRO_DEPTH +Value: 1 + + +12:52:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001257 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217311746 +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +12:52:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001257 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Ре +ConnectedLineNum: 79217311746 +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +12:52:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001257 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217311746 +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724493124.10337 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=12/sip + + +12:52:18 + +Event: NewCallerid +Privilege: call,all +Channel: Local/12@from-queue-00000afd;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217311746 +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493124.10335 +Linkedid: 1724493113.10332 +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/12-00001257 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217311746 +DestConnectedLineName: 79217311746 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724493124.10337 +DestLinkedid: 1724493113.10332 +DialStatus: ANSWER +Device: Local/12@from-queue +State: INUSE +BridgeUniqueid: 22ddd11a-07d8-4123-9a81-a052c9fdc871 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:52:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: BRIDGEPEER +Value: Local/12@from-queue-00000afd;1 + + +12:52:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +DestChannel: PJSIP/rt_769402-00001256 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989524843790 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989524843790 +DestPriority: 1 +DestUniqueid: 1724493123.10334 +DestLinkedid: 1724493123.10333 +DialStatus: CANCEL +Variable: MACRO_CONTEXT +Value: + + +12:52:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: C +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Cause: 16 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +12:52:19 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/10-00001255 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493123.10333 +Linkedid: 1724493123.10333 +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/rt_769402 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Source: 78162769402 +Destination: 989524843790 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001256 +LastApplication: Dial +LastData: PJSIP/+79524843790@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 16 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724493123.10333 +UserField: + + +12:52:19 + +Event: UserEvent +Privilege: user,all +Device: PJSIP/10 +State: NOT_INUSE +Exten: 10 +Context: ext-local +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 310 +LastCall: 1724492988 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10354 + + +12:52:32 + +Event: Hold +Privilege: call,all +Channel: PJSIP/13-00001253 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10338 +Linkedid: 1724493070.10326 +Variable: __RECORD_ID +Value: Local + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-x +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10338 +Linkedid: 1724493070.10326 +Variable: __DAY +Value: 24 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10338 +Linkedid: 1724493070.10326 +Variable: __QCONTEXT +Value: 0 + + +12:52:33 + +Event: BridgeCreate +Privilege: call,all +Channel: Local/16@from-internal-xfer-00000afe;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10338 +Linkedid: 1724493070.10326 +Variable: __DIRECTION +Value: +BridgeUniqueid: a9e728a3-c9bd-4dc5-a658-a2064b8d1a10 +BridgeType: basic +BridgeTechnology: + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: __CALLFILENAME +Value: external-13-79211687951-20240824-125120-1724493080.10330 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: __TTL +Value: 63 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: __FROMQUEUEEXTEN +Value: 79211687951 + + +12:52:33 + +Event: LocalBridge +Privilege: call,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/16@from-internal-xfer-00000afe;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-internal-xfer +LocalOneExten: 16 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493153.10338 +LocalOneLinkedid: 1724493070.10326 +LocalTwoChannel: Local/16@from-internal-xfer-00000afe;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 13 +LocalTwoCallerIDName: Регистратура_2 +LocalTwoConnectedLineNum: + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +BridgeUniqueid: a9e728a3-c9bd-4dc5-a658-a2064b8d1a10 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID +Value: 26cf95b0-80e4-434a-907a-b219f8f9f9fd + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 16 +Priority: 2 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: __RINGTIMER +Value: 60 +Extension: 16 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 16 +Priority: 3 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: ARG5 +Value: 0 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724493153.10339 +Variable: TOUCH_MONITOR +Value: 172449315 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: CHANEXTENCONTEXT +Value: 16@from-internal-xfer-00000afe;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=16@from-internal-xfer-00000afe;2 + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: MACRO_DEPTH +Value: 2 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=13) +Variable: DB_RESULT +Value: 13 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 172 +Linkedid: 1724493070.10326 +Variable: DB_RESULT +Value: PJSIP/16 +Extension: s +Application: Set +AppData: CALLERID(all)="Регистратура_2" <13> + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: DB_RESULT +Value: 79217365096 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)=79217365096) + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 26 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(GROUP(concurrency_limit)=13) + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 33 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Extension: s +Application: Set +AppData: CDR(cn +Variable: MACRO_DEPTH +Value: 2 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 17 +Linkedid: 1724493070.10326 +Extension: s +Application: GotoIf +AppData: 11?initialized +Variable: MACRO_DEPTH +Value: 1 + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(REC_STATUS=NO) + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Extension: recordcheck +Application: Goto +AppData: dontcare +Variable: MACRO_DEPTH +Value: 1 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Extension: exten +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtr,16 + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=16) + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 17244931 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +12:52:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +12:52:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +12:52:33 + +Event: Newexten +Privilege: +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +12:52:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: ARGC +Value: +Extension: ctset +Application: Return +AppData: + + +12:52:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:52:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +12:52:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-display +Exten: s +Priority: 1 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: +Value: 2 +Extension: s +Application: Goto +AppData: state-not_set,1 + + +12:52:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-display +Exten: state-not_set +Priority: 2 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Extension: state-not_set +Application: Return +AppData: +Variable: DB_RESULT +Value: Каб. 4 + + +12:52:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +12:52:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +12:52:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:52:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial- +Exten: s +Priority: 55 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Extension: s +Application: Dial +AppData: PJSIP/16/sip +Variable: DIALEDPEERNAME +Value: + + +12:52:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001258 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Variable: DIALEDPEERNUMBER +Value: 16/sip + + +12:52:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001258 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000afc;2 + + +12:52:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:52:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10338 +Linkedid: 1724493070.10326 +Variable: RTPAUDIOQOSBRIDGED +Value: ssrc=972922321;themssrc=2644917352;lp=0;rxjitter=0.000000;rxcount=3017;txjitter=0.000875;txcount=3000;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +12:52:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;1 +ChannelState: 5 +ChannelStateDesc: Ringin +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000199; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:52:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10338 +Linkedid: 1724493070.10326 +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 1fea981f-ec32-4424-b3d4-0c451bd4e8fd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +ToBridgeUniqueid: 1fea981f-ec32-4424-b3d4-0c451bd4e8fd +ToBridgeType: basic +ToBridgeTechnology: simple_bridge +ToBridgeCreator: +ToBridgeName: +ToBridgeNumChannels: 1 +ToBridgeVideoSourceMode: none +FromBridgeUniqueid: a9e728a3-c9bd-4dc5-a658-a2064b8d1a10 +FromBridgeType: basic +FromBridgeTechnology: simple_bridge +FromBridgeCreator: +FromBridgeName: +FromBridgeNumChannels: 1 +FromBridgeVideoSourceMode: none + + +12:52:36 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/16@from-internal-xfer-00000afe;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: BRIDGEPVTCALLID +Value: +Result: Success +OrigTransfererChannel: PJSIP/13-00001253 +OrigTransfererChannelState: 6 +OrigTransfererChannelStateDesc: Up +OrigTransfererCallerIDNum: 13 +OrigTransfererCallerIDName: Регистратура_2 +OrigTransfererConnectedLineNum: 16 +OrigTransfererConnectedLineName: Каб. 4 +OrigTransfererLanguage: ru +OrigTransfererAccountCode: +OrigTransfererContext: macro-dial-one +OrigTransfererExten: s +OrigTransfererPriority: 1 +OrigTransfererUniqueid: 1724493080.10331 +OrigTransfererLinkedid: 1724493070.10326 +OrigBridgeUniqueid: 1fea981f-ec32-4424-b3d4-0c451bd4e8fd +OrigBridgeType: basic +OrigBridgeTechnology: simple_bridge +OrigBridgeCreator: +OrigBridgeName: +OrigBridgeNumChannels: 2 +OrigBridgeVideoSourceMode: none +SecondTransfererChannel: PJSIP/13-00001253 +SecondTransfererChannelState: 6 +SecondTransfererChannelStateDesc: Up +SecondTransfererCallerIDNum: 13 +SecondTransfererCallerIDName: Регистратура_2 +SecondTransfererConnectedLineNum: 16 +SecondTransfererConnectedLineName: Каб. 4 +SecondTransfererLanguage: ru +SecondTransfererAccountCode: +SecondTransfererContext: macro-dial-one +SecondTransfererExten: s +SecondTransfererPriority: 1 +SecondTransfererUniqueid: 1724493080.10331 +SecondTransfererLinkedid: 1724493070.10326 +SecondBridgeUniqueid: a9e728a3-c9bd-4dc5-a658-a2064b8d1a10 +SecondBridgeType: basic +SecondBridgeTechnology: simple_bridge +SecondBridgeCreator: +SecondBridgeName: +SecondBridgeNumChannels: 0 +SecondBridgeVideoSourceMode: none +TransfereeChannel: Local/13@from-queue-00000afc;2 +TransfereeChannelState: 6 +TransfereeChannelStateDesc: Up +TransfereeCallerIDNum: 79211687951 +TransfereeCallerIDName: 79211687951 +TransfereeConnectedLineNum: 13 +TransfereeConnectedLineName: Регистратура_2 +TransfereeLanguage: ru +TransfereeAccountCode: +TransfereeContext: macro-dial-one +TransfereeExten: s +TransfereePriority: 55 +TransfereeUniqueid: 1724493080.10330 +TransfereeLinkedid: 1724493070.10326 +IsExternal: No +DestType: Bridge +DestBridgeUniqueid: 1fea981f-ec32-4424-b3d4-0c451bd4e8fd + + +12:52:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001253 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493080.10331 +Linkedid: 1724493070.10326 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000199; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:52:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001258 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Variable: MACRO_PRIORITY +Value: 1 +Hint: PJSIP/16&Custom +Status: 1 +StatusText: InUse +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: PJSIP/16 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm + + +12:52:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/16-00001258 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 4 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CFIGNORE= + + +12:52:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001258 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: blkvm-clr, + + +12:52:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001258 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-bl +Exten: s +Priority: 2 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +12:52:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001258 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO +Value: 1 + + +12:52:38 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/16-00001258 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Variable: MACRO_PRIORITY +Value: +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Source: 13 +Destination: s +DestinationContext: macro-dial-one +CallerID: "Регистратура_2" <13> +DestinationChannel: Local/16@from-internal-xfer-00000afe;1 +LastApplication: ExecIf +LastData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 3 +BillableSeconds: 3 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493080.10331 +UserField: +DestChannel: PJSIP/16-00001258 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 16 +DestCallerIDName: Каб. 4 +DestConnectedLineNum: 79211687951 +DestConnectedLineName: 79211687951 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724493153.10340 +DestLinkedid: 1724493070.10326 +DialStatus: ANSWER +BridgeUniqueid: 1b595640-fdd5-4b90-ad09-d59c22d85a4c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +12:52:38 + +Event: DeviceStateChange +Privilege: call,all +BridgeUniqueid: 1b595640-fdd5-4b90-ad09-d59c22d85a4c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/16@from-internal-xfer-00000afe;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10338 +Linkedid: 1724493070.10326 +Variable: BRIDGEPEER +Value: Local/13@from-queue-00000afc;2 +DestChannel: Local/16@from-internal-xfer-00000afe;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 16 +DestCallerIDName: Каб. 4 +DestConnectedLineNum: 79211687951 +DestConnectedLineName: 79211687951 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal-xfer +DestExten: 16 +DestPriority: 1 +DestUniqueid: 1724493153.10338 +DestLinkedid: 1724493070.10326 +DialStatus: ANSWER +Device: Loca + + +12:52:38 + +Event: BridgeLeave +Privilege: call,all +Device: PJSIP/13 +State: NOT_INUSE +BridgeUniqueid: 1fea981f-ec32-4424-b3d4-0c451bd4e8fd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493 +Linkedid: 1724493070.10326 +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10355 +Source: 16 +Destination: 16 +DestinationContext: from-internal-xfer +CallerID: "Каб. 4" <16> +DestinationChannel: +LastApplication: +LastData: +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 1 +BillableSeconds: 0 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493153.10338 +UserField: +LocalOneChannel: Local/16@from-internal-xfer-00000afe;1 +LocalOneChannelState: 6 +LocalOneChannelStateDesc: Up +LocalOneCallerIDNum: 16 +LocalOneCallerIDName: Каб. 4 +LocalOneConnectedLineNum: 79211687951 +LocalOneConnectedLineName: 79211687951 +LocalOneLanguage: ru +LocalOneAccountCode: +LocalOneContext: from-internal-xfer +LocalOneExten: 16 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493153.10338 +LocalOneLinkedid: 1724493070.10326 +LocalTwoChannel: Local/16@from-internal-xfer-00000afe;2 +LocalTwoChannelState: 6 +LocalTwoChannelStateDesc: Up +LocalTwoCallerIDNum: 79211687951 +LocalTwoCallerIDName: 79211687951 +LocalTwoConnectedLineNum: 16 +LocalTwoConnectedLineName: Каб. 4 +LocalTwoLanguage: ru +LocalTwoAccountCode: +LocalTwoContext: macro-dial-one +LocalTwoExten: s +LocalTwoPriority: 55 +LocalTwoUniqueid: 1724493153.10339 +LocalTwoLinkedid: 1724493070.10326 +SourceChannel: Local/13@from-queue-00000afc;2 +SourceChannelState: 6 +SourceChannelStateDesc: Up +SourceCallerIDNum: 79211687951 +SourceCallerIDName: 79211687951 +SourceConnectedLineNum: 16 +SourceConnectedLineName: Каб. 4 +SourceLanguage: ru +SourceAccountCode: +SourceContext: macro-dial-one +SourceExten: s +SourcePriority: 55 +SourceUniqueid: 1724493080.10330 +SourceLinkedid: 1724493070.10326 +DestUniqueId: 1724493153.10339 +Id: 21 + + +12:52:38 + +Event: LocalOptimizationEnd +Privilege: call,all +Channel: Local/16@from-internal-xfer-00000afe;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10338 +Linkedid: 1724493070.10326 +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 1b595640-fdd5-4b90-ad09-d59c22d85a4c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +SwapUniqueid: 1724493153.10339 +LocalOneChannel: Local/16@from-internal-xfer-00000afe;1 +LocalOneChannelState: 6 +LocalOneChannelStateDesc: Up +LocalOneCallerIDNum: 16 +LocalOneCallerIDName: Каб. 4 +LocalOneConnectedLineNum: 79211687951 +LocalOneConnectedLineName: 79211687951 +LocalOneLanguage: ru +LocalOneAccountCode: +LocalOneContext: from-internal-xfer +LocalOneExten: 16 +LocalOnePriority: 1 + + +12:52:38 + +Event: Hangup +Privilege: call,all +BridgeUniqueid: 1fea981f-ec32-4424-b3d4-0c451bd4e8fd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/16@from-internal-xfer-00000afe;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 16 +Priority: 1 +Uniqueid: 17 +Linkedid: 1724493070.10326 +Variable: DIALSTATUS +Value: ANSWER +Cause: 16 + + +12:52:38 + +Event: VarSet +Privilege: dialplan,all +Device: Local/16@from-internal-xfer +State: NOT_INUSE +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: ARG1 +Value: + + +12:52:38 + +Event: V +Privilege: dialplan,all +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:52:38 + +Event: VarSet +Privilege: +Channel: Local/16@from-internal-xfer-00000afe;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +12:52:38 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/16@FROM-INTERNAL-XFER +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724493153.10339 +Linkedid: 1724493070.10326 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79211687951 +Destination: 16 +DestinationContext: ext-local +CallerID: "79211687951" <79211687951> +DestinationChannel: PJSIP/16-00001258 +LastApplication: Dial +LastData: PJSIP/16/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 4 +BillableSeconds: 0 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493153.10339 +UserField: +Device: Local/16@from-internal-xfer +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10357 + + +12:53:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/16-00001258 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +12:53:12 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: BRIDGEPEER +Value: + + +12:53:13 + +Event: UserEvent +Privilege: user,all +BridgeUniqueid: 1b595640-fdd5-4b90-ad09-d59c22d85a4c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: PJSIP/16-00001258 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +AccountCode: +Context: ext-local +Exten: 16 +Priority: 1 +Uniqueid: 1724493153.10340 +Linkedid: 1724493070.10326 +Variable: RTPAUDIOQOSMES +Value: minrxmes=020.000000; maxrxmes=085.367289; avgrxmes=030.894548; stdevrxmes=000.000021; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=030.894548; stdevtxmes=024.360950; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/16 +State: NOT_INUSE +Hint: PJSIP/16&Custom +Status: 0 +StatusText: Idle +UserEvent: refr + + +12:53:13 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 1b595640-fdd5-4b90-ad09-d59c22d85a4c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: ARG2 +Value: 13 + + +12:53:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: ARG5 +Value: + + +12:53:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000afc;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: ARG1 +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:53:13 + +Event: HangupRequest +Privilege: call,all +Channel: Local/13@from +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493080.10330 +Linkedid: 1724493070.10326 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: + + +12:53:13 + +Event: Cdr +Privilege: cdr,all +AccountCode: +Source: 79211687951 +Destination: 13 +DestinationContext: ext-local +CallerID: "79211687951" <79211687951> +Channel: Local/13@from-queue-00000afc;1 +DestinationChannel: PJSIP/13-00001253 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 72 +BillableSeconds: 57 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493080.10330 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 16 +CallerIDName: Каб. 4 +ConnectedLineNum: 79211687951 +ConnectedLineName: 79211687951 +Language: ru +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493080.10329 +Linkedid: 1724493070.10326 +Cause: 16 +Cause-txt: Normal Clearing +Variable: BRIDGEPEER +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +BridgeUniqueid: 2b2c5ecd-cf6b-4d69-949b-3e1ffac7a90a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: NOT_INUSE + + +12:53:13 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-00001250 +ActionID: 10360 +BridgeUniqueid: 2b2c5ecd-cf6b-4d69-949b-3e1ffac7a90a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_PRIORITY + + +12:53:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +Source: 79211687951 +Destination: 13 +DestinationContext: ext-local +CallerID: "79211687951" <79211687951> +DestinationChannel: PJSIP/16-00001258 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 34 +BillableSeconds: 34 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493080.10330 +UserField: + + +12:53:13 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001250 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000131; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=081.191481; stdevtxmes=012.932187; +Source: 79211687951 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79211687951" <79211687951> +DestinationChannel: Local/13@from-queue-0 + + +12:53:13 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79211687951 +CallerIDName: 79211687951 +ConnectedLineNum: 16 +ConnectedLineName: Каб. 4 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493070.10326 +Linkedid: 1724493070.10326 +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 16 +TalkTime: 96 +Reason: agent +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10361 + + +12:53:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989992800452 +Priority: 1 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:53:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:53:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493213.1 +Linkedid: 1724493213.10341 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-00001259 + + +12:53:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493213.10341 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +12:53:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:53:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +12:53:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +12:53:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +12:53:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +12:53:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:53:33 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +12:53:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493213.10341 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:53:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989992800452 +Priority: 2 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989992800452 +Application: Gosub +AppData: sub-record-check,s,1(out,989992800452,dontcare) + + +12:53:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493213.10341 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493213.10341 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: __CALLFILENAME +Value: out-989992800452-13-20240824-125333-1724493213.10341 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989992800452-13-20240824-125333-1724493213.10341 + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989992800452-13-20240824-125333-1724493213.10341.wav + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989992800452 +Priority: 7 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213. +Variable: MOHCLASS +Value: default +Extension: 989992800452 +Application: Set +AppData: MOHCLASS=default + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989992800452 +Priority: 11 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_EXTEN +Value: 989992800452 +Extension: 989992800452 +Application: Macro +AppData: dialout-trunk,6,+79992800452,,off + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) +Variable: DB_RESULT +Value: + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79992800452 + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79992800452 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79992800452) + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79992800452 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79992800452 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Extension: s +Application: Dial +AppData: PJSIP/+79992800452@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79992800452^989992800452^6^1724493213^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79992800452 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: PROGRESSTIME +Value: + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +Variable: __REC_STATUS +Value: RECORDING + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +Variable: __DAY +Value: 24 + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:53:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:53:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493213.1 +Linkedid: 1724493213.10341 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:53:34 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000125a +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989992800452 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493213.10342 +DestLinkedid: 1724493213.10341 +DialString: +79992800452@rt_769402 +To: 193.201.229 + + +12:53:34 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989992800452 +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +Extension: 989992800452 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/rt_769402 +State: RINGING + + +12:53:34 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989992800452 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: RINGTIME_MS +Value: 363 +DestChannel: PJSIP/rt_769402-0000125a +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989992800452 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989992800452 +DestPriority: 1 +DestUniqueid: 1724493213.10342 +DestLinkedid: 1724493213.10341 +DialStatus: RINGING +Device: PJSIP/13 +State: INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:53:37 + +Event: DialState +Privilege: call,all +Channel: PJSIP/13-00001259 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989992800452 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: PROGRESSTIME_MS +Value: 3286 +DestChannel: PJSIP/rt_769402-0000125a +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989992800452 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989992800452 +DestPriority: 1 +DestUniqueid: 1724493213.10342 +DestLinkedid: 1724493213.10341 +DialStatus: PROGRESS + + +12:53:42 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989992800452 +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fa9dca +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493222.442251 +SentRTP: 1724533216 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xf0a4f8ea +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 41271 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:53:47 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989992800452 +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fa9dca +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493227.441646 +SentRTP: 1724573216 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xf0a4f8ea +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 41521 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:53:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989992800452 +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fa9dca +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493232.441881 +SentRTP: 1724613216 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0xf0a4f8ea +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 41771 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:53:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989992800452 +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:53:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:53:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +Variable: BRIDGEPEER +Value: PJSIP/13-00001259 +DestChannel: PJSIP/rt_769402-0000125a +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989992800452 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493213.10342 +DestLinkedid: 1724493213.10341 +DialStatus: ANSWER +BridgeUniqueid: 9f148592-6b71-413d-add5-05d65dc58d21 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:53:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989992800452 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: BRIDGEPVTCALLID +Value: ce204971-a47c-49f0-b735-008180be7580 + + +12:53:57 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fa9dca +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493237.441519 +SentRTP: 1724653056 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0xf0a4f8ea +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 42021 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:54:07 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fa9dca +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493247.441648 +SentRTP: 1724733216 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0xf0a4f8ea +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 42521 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:54:12 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x17fa9dca +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493252.442641 +SentRTP: 1724773216 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0xf0a4f8ea +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 42771 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:54:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:54:13 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 9f148592-6b71-413d-add5-05d65dc58d21 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:54:13 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 9f148592-6b71-413d-add5-05d65dc58d21 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/13-00001259 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989992800452 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: ARG2 +Value: + + +12:54:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001259 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989992800452 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:54:13 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989992800452 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493213.10342 +Linkedid: 1724493213.10341 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 9f148592-6b71-413d-add5-05d65dc58d21 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:54:13 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/13-00001259 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989992800452 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Source: 78162769402 +Destination: 989992800452 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000125a +LastApplication: Dial +LastData: PJSIP/+79992800452@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 40 +BillableSeconds: 20 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION + + +12:54:14 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: h +Context: from-internal +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Channel: PJSIP/13-00001259 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989992800452 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724493213.10341 +Linkedid: 1724493213.10341 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000180; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:54:14 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/13 +ActionID: 10363 + + +12:54:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:54:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724493270.10343 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:54:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724493270. +Linkedid: 1724493270.10343 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-125430 +Variable: __YEAR +Value: 2024 + + +12:54:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:54:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +12:54:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:54:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +12:54:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +12:54:30 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +12:54:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:54:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +12:54:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: 2 +Application: AGI +AppData: agi + + +12:54:31 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +CommandId: 811409375 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +12:54:31 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +CommandId: 685037131 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:54:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +CommandId: 1650520858 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:54:32 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +CommandId: 1377854596 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +12:54:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.103 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +12:54:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-0000125b + + +12:54:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-0000125b + + +12:54:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:54:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: s +Application: Set +AppData: CDR(cnum)=79095662525 +Variable: MACRO_DEPTH +Value: 1 + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79095662525 + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000125b)=TRUE + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724493270.10 +Linkedid: 1724493270.10343 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +12:54:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +12:54:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +12:54:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +12:54:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Extension: 194 +Application: QueueLog +AppData: 194,1724493270.10343,NONE,DID,79217365096 + + +12:54:41 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:54:41 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493270.10 +Linkedid: 1724493270.10343 +Variable: QUEUEJOINTIME +Value: 1724493281 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493281.10344 +Linkedid: 1724493270.10343 +Class: default +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493281.10344 +Linkedid: 1724493270.10343 +Variable: __RINGINGSENT +Value: TRUE + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493281.10344 +Linkedid: 1724493270.10343 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: __FROMQUEUEEXTEN +Value: 79095662525 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 13 +Priority: 1 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: __TIMESTR +Value: 20240824-125430 + + +12:54:41 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000aff;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493281.10344 +LocalOneLinkedid: 1724493270.10343 +LocalTwoChannel: Local/13@from-queue-00000aff;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79095662525 +LocalTwoCallerIDName: 79095662525 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493281.10345 +LocalTwoLinkedid: 1724493270.10343 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000aff;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79095662525 +DestConnectedLineName: 79095662525 +DestLanguage: en +DestAccountCode: + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493281.10346 +Linkedid: 1724493270.10343 +DestChannel: Local/13@from-queue-00000aff;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724493281.10344 +DestLinkedid: 1724493270.10343 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493281.10346 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493281.10346 +Linkedid: 1724493270.10343 +Variable: __DIRECTION +Value: + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000125b + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: __MON_FMT +Value: wav + + +12:54:41 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b00;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493281.10346 +LocalOneLinkedid: 1724493270.10343 +LocalTwoChannel: Local/10@from-queue-00000b00;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79095662525 +LocalTwoCallerIDName: 79095662525 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493281.10347 +LocalTwoLinkedid: 1724493270.10343 +LocalOptimization: No + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 4 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +DestChannel: Local/10@from-queue-00000b00;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724493281.10346 +DestLinkedid: 1724493270.10343 +DialString: Local/10@from-queue/n +Extension: 10 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: __RINGTIMER +Value: 60 +Extension: 10 +Application: Macro +AppData: 0?Set(__CWIGNORE=) + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724493281.10347 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000b00;2 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: HOTDESCKCHAN +Value: 10@from-queue-00000b00;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000b00;2 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: s +Application: E +AppData: 0?Set(HOTDESKCALL=1) +Variable: MACRO_DEPTH +Value: 2 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79095662525 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493281.10346 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724493281.10 +Linkedid: 1724493270.10343 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 172449 +Linkedid: 1724493270.10343 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79095662525-20240824-125441-1724493281.10347 +Variable: MACRO_DEPTH +Value: 1 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000b00;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000b00;2 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG2 +Value: + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: M +Value: +Extension: exten +Application: Return +AppData: + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_DEPTH +Value: 2 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 790956625 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: dstring +Application: Set +AppData: DEVICES=10 +Variable: DEVICES +Value: 10 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 2 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Goto +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: ctset +Application: Return +AppData: +Variable: AR +Value: 2 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: 13 +Application: Set +AppData: QAGENT=13 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724493281.10347 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: ANSW +Value: + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: DB_RESULT +Value: EXTENSION +Extension: 13 +Application: GotoIf +AppData: 1?ext-lo + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724493281.10345 +Linkedid: +Variable: MACRO_PRIORITY +Value: 3 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +12:54:41 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000aff;2 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79095662525 + + +12:54:41 + +Event: Newexte +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493 +Linkedid: 1724493270.10343 +Variable: ARG1 +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten- +Exten: s +Priority: 3 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724493281 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-125441 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724493281 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +12:54:41 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +12:54:41 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/10-0000125c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000125c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: __REC_STATUS +Value: RECORDING + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000125c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Р +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: __YEAR +Value: 2024 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000125c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79095662525) +Variable: __FROMQ +Value: true + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000125c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79095662525) + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: __DIRECTION +Value: +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000125c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Рег +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000aff;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000aff;2 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: reco +Priority: 13 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=13) + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 +Variable: THISDIAL +Value: PJSIP/13 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Extension: dstring +Application: NoOp +AppData: Debug +Variable: MACRO_DEPTH +Value: 2 + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: dstring +Priority: 19 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: DSTRING +Value: PJSIP/13/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 38 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:54:41 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: ANSWEREDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493281.10349 +Linkedid: 1724493270.10343 +Variable: DIALEDPEERNUMBER +Value: 13/sip +DestChannel: PJSIP/10-0000125c +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79095662525 +DestConnectedLineName: 79095662525 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493281.10348 +DestLinkedid: 1724493270.10343 +DialString: 10/sip + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493281.10349 +Linkedid: 1724493270.10343 +Variable: __FROMEXTEN +Value: wav + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493281.10349 +Linkedid: 1724493270.10343 +Variable: __FROMQ +Value: true + + +12:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493281.10349 +Linkedid: 1724493270.10343 +Variable: __REVERSAL_REJECT +Value: FALSE + + +12:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724493281.10349 +Linkedid: 1724493270.10343 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +12:54:41 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +Device: Local/10@from-queue +State: INUSE +DestChannel: Local/10@from-queue-00000b00;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing + + +12:54:41 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +DestChannel: Local/13@from-queue-00000aff;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79095662525 +DestConnectedLineName: 79095662525 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493281.10344 +DestLinkedid: 1724493270.10343 +DialString: 13/sip +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE + + +12:54:42 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/13-0000125d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724493281.10349 +Linkedid: 1724493270.10343 +DestChannel: PJSIP/13-0000125d +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79095662525 +DestConnectedLineName: 79095662525 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724493281.10349 +DestLinkedid: 1724493270.10343 +DialStatus: BUSY +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(DIALSTATUS=) +Cause: 17 +Cause-txt: User busy + + +12:54:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 59 +Uniqueid: 1724 +Linkedid: 1724493270.10343 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: s +Application: MacroExit +AppData: + + +12:54:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 11 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIALSTATUS=BUSY + + +12:54:42 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: Local/13@from-queue-00000aff;2 +ActionID: 10364 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s-BUSY +Priority: 2 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Extension: s-BUSY +Application: PlayTones +AppData: busy + + +12:54:42 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000aff;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 17244932 +Linkedid: 1724493270.10343 +Extension: s-BUSY +Application: Busy +AppData: 20 +DestChannel: Local/13@from-queue-00000aff;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79095662525 +DestConnectedLineName: 79095662525 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493281.10344 +DestLinkedid: 1724493270.10343 +DialStatus: BUSY +Class: default +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +RingTime: 1000 +Cause: 0 +Cause-txt: Unknown + + +12:54:42 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 7 +ChannelStateDesc: Busy +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s-BUSY +Priority: 3 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Variable: MACRO_PRIORITY +Value: + + +12:54:42 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 7 +ChannelStateDesc: Busy +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +12:54:42 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/13@from-queue-00000aff;2 +ChannelState: 7 +ChannelStateDesc: Busy +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724493281.10345 +Linkedid: 1724493270.10343 +Extension: s +Application: Hangup +AppData: +Source: 79095662525 +Destination: 13 +DestinationContext: ext-local +CallerID: "79095662525" <79095662525> +DestinationChannel: PJSIP/13-0000125d +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 1 +BillableSeconds: 0 +Disposition: BUSY +AMAFlags: DOCUMENTATION +UniqueID: 1724493281.10345 +UserField: +Variable: MACRO_PRIORITY +Value: +Cause: 17 +Cause-txt: User busy + + +12:54:42 + +Event: UserEvent +Privilege: user,all +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/13@FROM-QUEUE +ActionID: 10366 + + +12:54:43 + +Event: DialState +Privilege: call,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 2635 +DestChannel: PJSIP/10-0000125c +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79095662525 +DestConnectedLineName: 79095662525 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724493281.10348 +DestLinkedid: 1724493270.10343 +DialStatus: RINGING + + +12:54:43 + +Event: MusicOnHoldStop +Privilege: call,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +DestChannel: Local/10@from-queue-00000b00;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79095662525 +DestConnectedLineName: 79095662525 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493281.10346 +DestLinkedid: 1724493270.10343 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 310 +LastCall: 1724492988 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062031677 +Priority: 1 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493285.1 +Linkedid: 1724493285.10350 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-0000125e + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493285.10350 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:54:45 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493285.10350 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062031677 +Priority: 2 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989062031677 +Application: Gosub +AppData: sub-record-check,s,1(out,989062031677,dontcare) + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493285.10350 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493285.10350 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: __CALLFILENAME +Value: out-989062031677-13-20240824-125445-1724493285.10350 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989062031677-13-20240824-125445-1724493285.10350 + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989062031677-13-20240824-125445-1724493285.10350.wav + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062031677 +Priority: 7 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285. +Variable: MOHCLASS +Value: default +Extension: 989062031677 +Application: Set +AppData: MOHCLASS=default + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989062031677 +Priority: 11 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_EXTEN +Value: 989062031677 +Extension: 989062031677 +Application: Macro +AppData: dialout-trunk,6,+79062031677,,off + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) +Variable: DB_RESULT +Value: + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79062031677 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79062031677 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79062031677) + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Extension: s +Application: Dial +AppData: PJSIP/+79062031677@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79062031677^989062031677^6^1724493285^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: PROGRESSTIME +Value: + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +Variable: __REC_STATUS +Value: RECORDING + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +Variable: __DAY +Value: 24 + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:54:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:54:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493285.1 +Linkedid: 1724493285.10350 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:54:45 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000125f +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989062031677 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493285.10351 +DestLinkedid: 1724493285.10350 +DialString: +79062031677@rt_769402 + + +12:54:45 + +Event: DialState +Privilege: call,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Extension: 989062031677 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 368 +Device: PJSIP/13 +State: INUSE +DestChannel: PJSIP/rt_769402-0000125f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989062031677 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989062031677 +DestPriority: 1 +DestUniqueid: 1724493285.10351 +DestLinkedid: 1724493285.10350 +DialStatus: RINGING + + +12:54:45 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:54:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:54:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217311746 +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493124.10335 +Linkedid: 1724493113.10332 +Variable: BRIDGEPVT +Value: +DestChannel: Local/12@from-queue-00000afd;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217311746 +DestConnectedLineName: 79217311746 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493124.10335 +DestLinkedid: 1724493113.10332 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 14 +TalkTime: 149 +Reason: caller + + +12:54:48 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 22ddd11a-07d8-4123-9a81-a052c9fdc871 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Local/12@from +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Cause: 16 +Cause-txt: Normal Clearing +Variable: BRIDGEPEER +Value: + + +12:54:48 + +Event: ExtensionStatus +Privilege: +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: ARG2 +Value: 12 +BridgeUniqueid: 22ddd11a-07d8-4123-9a81-a052c9fdc871 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:54:48 + +Event: VarSet +Privilege: dialplan,all +Device: Local/12@from-queue +State: NOT_INUSE +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: ARG4 +Value: + + +12:54:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001257 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217311746 +ConnectedLineName: 79217311746 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:54:48 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000afd;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: mac +Exten: h +Priority: 1 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 + + +12:54:48 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493124.10336 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 338 +LastCall: 1724493287 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 79217311746 +Destination: 12 +DestinationContext: ext-local +CallerID: "79217311746" <79217311746> +DestinationChannel: PJSIP/12-00001257 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 163 +BillableSeconds: 149 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493124.10336 +UserField: + + +12:54:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493 +Linkedid: 1724493113.10332 +Variable: MACRO_CONTEXT +Value: ext-queues +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10367 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:54:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10369 + + +12:54:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001254 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Source: 79217311746 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79217311746" <79217311746> +DestinationChannel: Local/12@from-queue-00000afd;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 174 +BillableSeconds: 174 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493113.10332 +UserField: + + +12:54:48 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217311746 +CallerIDName: 79217311746 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493113.10332 +Linkedid: 1724493113.10332 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10370 + + +12:54:49 + +Event: DialState +Privilege: call,all +Channel: PJSIP/13-0000125e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: PROGRESSTIME_MS +Value: 3925 +DestChannel: PJSIP/rt_769402-0000125f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989062031677 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989062031677 +DestPriority: 1 +DestUniqueid: 1724493285.10351 +DestLinkedid: 1724493285.10350 +DialStatus: PROGRESS + + +12:54:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000125c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/10 +State: INUSE + + +12:54:50 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 310 +LastCall: 1724492988 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/10-0000125c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 790956 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +12:54:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000125c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +12:54:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000125c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000125b)= + + +12:54:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000125c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +12:54:50 + +Event: Newstate +Privilege: call,all +Channel: Local/10@from-queue-00000b00;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-0000125c +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79095662525 +DestConnectedLineName: 79095662525 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724493281.10348 +DestLinkedid: 1724493270.10343 +DialStatus: ANSWER +BridgeUniqueid: 4012b426-11cb-4754-b2c2-37b8fdfc3148 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE + + +12:54:50 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/10@from-queue-00000b00;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 790956 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000b00;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79095662525 +DestConnectedLineName: 79095662525 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493281.10346 +DestLinkedid: 1724493270.10343 +DialStatus: ANSWER +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 9 +RingTime: 9 +BridgeUniqueid: 97ab1ef5-822b-402d-9d8a-61217c8c423c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:54:50 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 4012b426-11cb-4754-b2c2-37b8fdfc3148 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/10-0000125c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000b00;2 +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +12:54:50 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: BRIDGEPVTCALLID +Value: ae2a5460-3fed-4dca-8199-770eb9ec1d7e +Device: Local/10@from-queue +State: INUSE + + +12:54:54 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062031677 +Priority: 1 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5974894a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493294.557830 +SentRTP: 1724533288 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x28120e7d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 16753 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:54:59 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062031677 +Priority: 1 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5974894a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493299.559552 +SentRTP: 1724573288 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x28120e7d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 17003 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 2 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:55:04 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062031677 +Priority: 1 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5974894a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493304.559498 +SentRTP: 1724613288 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x28120e7d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 17253 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:55:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989062031677 +Priority: 1 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +Variable: LOCAL(ARG1) +Value: +79062031677 +Device: PJSIP/rt_769402 +State: INUSE + + +12:55:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +Variable: LOCAL(ARGC) +Value: 6 +Extension: s +Application: Return +AppData: + + +12:55:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-0000125f +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989062031677 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493285.10351 +DestLinkedid: 1724493285.10350 +DialStatus: ANSWER +BridgeUniqueid: b51b0724-700e-4e6c-ac22-a41e8742a9dd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:55:06 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: b51b0724-700e-4e6c-ac22-a41e8742a9dd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/13-0000125e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: BRIDGEPVTCALLID +Value: 62037ff9-710d-42a0-9f93-063b96288f8a + + +12:55:19 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5974894a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493319.558794 +SentRTP: 1724733288 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0x28120e7d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 18003 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:55:24 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5974894a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493324.560359 +SentRTP: 1724773288 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0x28120e7d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 18253 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:55:29 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5974894a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493329.558702 +SentRTP: 1724813288 +SentPackets: 2001 +SentOctets: 320160 +Report0SourceSSRC: 0x28120e7d +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 18503 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:55:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:55:32 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13-0000125e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: b51b0724-700e-4e6c-ac22-a41e8742a9dd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:55:32 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 28 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: ARG4 +Value: +BridgeUniqueid: b51b0724-700e-4e6c-ac22-a41e8742a9dd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:55:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: MACRO_PRIORITY +Value: 1 +BridgeUniqueid: b51b0724-700e-4e6c-ac22-a41e8742a9dd +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +12:55:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000125f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989062031677 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493285.10351 +Linkedid: 1724493285.10350 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.3672 +Extension: s +Application: GotoIf +AppData: 1?theend + + +12:55:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000125e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Source: 78162769402 +Destination: 989062031677 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000125f +LastApplication: Dial +LastData: PJSIP/+79062031677@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 47 +BillableSeconds: 25 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493285.10350 +UserField: +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10371 +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Variable: MACRO_CONTEXT + + +12:55:32 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-0000125e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989062031677 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493285.10350 +Linkedid: 1724493285.10350 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000135; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 17244931 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:55:32 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/13 +ActionID: 10372 + + +12:55:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b00;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:55:59 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-0000125c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: BRIDGEPVTCALLID +Value: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +BridgeUniqueid: 4012b426-11cb-4754-b2c2-37b8fdfc3148 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:55:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000125c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79095662525 +ConnectedLineName: 79095662525 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493281.10348 +Linkedid: 1724493270.10343 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001625;avgrxjitter=000.001052;stdevrxjitter=000.000195;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +BridgeUniqueid: 4012b426-11cb-4754-b2c2-37b8fdfc3148 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:55:59 + +Event: BridgeDestroy +Privilege: call,all +AccountCode: +Source: 79095662525 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79095662525" <79095662525> +Channel: PJSIP/Megafon_3-0000125b +DestinationChannel: Local/13@from-queue-00000aff;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 12 +BillableSeconds: 12 +Disposition: BUSY +AMAFlags: DOCUMENTATION +UniqueID: 1724493270.10343 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Cause: 16 +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 97ab1ef5-822b-402d-9d8a-61217c8c423c +BridgeType: basic +BridgeTechnology: simple_b +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing + + +12:55:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493270.10343 +Linkedid: 172449327 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +12:55:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493270.10343 +Linkedid: 1724493270.10343 +Variable: MACRO_PRIORITY +Value: +Device: Local/10@from-queue +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 9 +TalkTime: 69 +Reason: agent + + +12:55:59 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-0000125b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79095662525 +CallerIDName: 79095662525 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724493281.10347 +Linkedid: 1724493270.10343 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10373 +Device: Local/10@from-queue +State: NOT_INUSE +Source: 79095662525 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79095662525" <79095662525> +DestinationChannel: Local/10@from-que + + +12:55:59 + +Event: Cdr +Privilege: cdr,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: Local/10@from-queue-00000b00;2 +ActionID: 10376 +AccountCode: +Source: 79095662525 +Destination: 10 +DestinationContext: ext-local +CallerID: "79095662525" <79095662525> +DestinationChannel: PJSIP/10-0000125c +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 78 +BillableSeconds: 68 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493281.10347 +UserField: + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989052916127 +Priority: 1 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493362.1 +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-00001260 + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:56:02 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493362.10352 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989052916127 +Priority: 2 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989052916127 +Application: Gosub +AppData: sub-record-check,s,1(out,989052916127,dontcare) + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493362.10352 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493362.10352 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: __CALLFILENAME +Value: out-989052916127-13-20240824-125602-1724493362.10352 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989052916127-13-20240824-125602-1724493362.10352 + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989052916127-13-20240824-125602-1724493362.10352.wav + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989052916127 +Priority: 7 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362. +Variable: MOHCLASS +Value: default +Extension: 989052916127 +Application: Set +AppData: MOHCLASS=default + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989052916127 +Priority: 11 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_EXTEN +Value: 989052916127 +Extension: 989052916127 +Application: Macro +AppData: dialout-trunk,6,+79052916127,,off + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) +Variable: DB_RESULT +Value: + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79052916127 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79052916127 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79052916127) + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Extension: s +Application: Dial +AppData: PJSIP/+79052916127@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79052916127^989052916127^6^1724493362^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: PROGRESSTIME +Value: + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +Variable: __REC_STATUS +Value: RECORDING + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +Variable: __DAY +Value: 24 + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +12:56:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493362.1 +Linkedid: 1724493362.10352 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:56:02 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001261 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989052916127 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493362.10353 +DestLinkedid: 1724493362.10352 +DialString: +79052916127@rt_769402 + + +12:56:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Extension: 989052916127 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/rt_769402 +State: RINGING +Variable: RINGTIME_MS +Value: 388 + + +12:56:02 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/13 +State: INUSE +Exten: 13 +Context: ext-local +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:56:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: PROGRESSTIME_MS +Value: 5090 + + +12:56:12 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989052916127 +Priority: 1 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x10e45e62 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493372.713802 +SentRTP: 1724533200 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0xdb66b948 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 43307 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524895499 +Priority: 1 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_PRIORITY +Value: 1 +Extension: 989524895499 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: CHANCONTEXT +Value: +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: s +Application: Set +AppData: CHANEXTEN=12-00001262 +Variable: MA +Value: 12-00001262 + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493378.10354 +Linkedid: 17 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12 +Variable: MACRO_DEPTH +Value: 1 + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?report + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 1 + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: MACRO_DEPTH +Value: 1 + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 22 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(all)="Регистратура_1" <12> + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 25 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 1 + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Macro Depth is 1 + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: __REC_STATUS +Value: INITIALIZED + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: __TIMESTR +Value: 20240824-125618 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-125618 + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: GotoIf +AppData: 3?checkaction + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 5 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: out +Application: Gosub +AppData: recordcheck,1(yes,out,989524895499) +Variable: LOCAL(ARG2) +Value: out + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 16 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: su +Exten: recordcheck +Priority: 21 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/out-989524895499-12-20240824-125618-1724493378.10354.wav + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG2 +Value: + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524895499 +Priority: 4 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: GOSUB_RETVAL +Value: +Extension: 989524895499 +Application: Set +AppData: _ROUTEID=1 + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524895499 +Priority: 8 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: 989524895499 +Application: Set +AppData: _CALLERIDNUMINTERNAL=12 +Variable: _CALLERIDNUMINTERNAL +Value: 12 + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 5 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?disabletrunk,1 + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 8 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: s +Application: Set +AppData: OUTBOUND_GROUP=OUT_6 +Variable: MACRO_DEPTH +Value: 1 + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: outbound-callerid,6 + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 2 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 7 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=1 + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 11 +Uniqueid: 1724493378.10354 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 14 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: ExecIf +AppData: 0?Set(REALCALLERIDNUM=12) + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 21 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: EMERGENCYCID= + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 30 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)=78162769402) + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-ou +Exten: s +Priority: 33 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)=12) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 37 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=prohib_passed_screen) +Variable: MACRO_DEPTH +Value: 2 + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 41 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_EXTEN +Value: 989524895499 +Extension: s +Application: Set +AppData: CDR(outbound_cnam)= + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 16 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: custom +Value: PJSIP +Extension: s +Application: Set +AppData: custom=PJSIP + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: s +Application: Macro +AppData: dialout-trunk-predial-hook, +Variable: MACRO_CONTEXT +Value: macro-dialout-trunk + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_PRIORITY +Value: 11 +Extension: s +Application: MacroExit +AppData: + + +12:56:18 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524895499 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 23 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(name,i)=CID +Variable: DB_RESULT +Value: Регистратура_1 + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 26 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=) + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Extension: s +Application: Dial +AppData: PJSIP/+79524895499@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79524895499^989524895499^6^1724493378^^78162769402) +Variable: ANSWEREDTIME +Value: + + +12:56:18 + +Event: Var +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Variable: NODEST +Value: + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Variable: __REC_POLICY_MODE +Value: YES + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524895499 +Priority: 1 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Variable: __DIAL_OPTIONS +Value: HhTtr +Extension: 989524895499 +Application: AppDial +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:56:18 + +Event: VarSet +Privilege: di +Channel: PJSIP/rt_769402-00001263 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Variable: sipkey +Value: Alert-Info +Extension: s +Application: While +AppData: 1 + + +12:56:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 10 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPAddHeader(Alert-Info + + +12:56:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Extension: s +Application: Return +AppData: +Variable: END_WHILE_0 +Value: + + +12:56:18 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-00001262 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: RINGTIME_MS +Value: 305 +DestChannel: PJSIP/rt_769402-00001263 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989524895499 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493378.10355 +DestLinkedid: 1724493378.10354 +DialString: +79524895499@rt_769402 +Hint: PJSIP/12&Custom +Status: 1 +StatusText: InUse +Extension: 989524895499 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: INUSE + + +12:56:18 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 338 +LastCall: 1724493287 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:56:27 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989052916127 +Priority: 1 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x10e45e62 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493387.713528 +SentRTP: 1724653200 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0xdb66b948 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 44057 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:56:32 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989052916127 +Priority: 1 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x10e45e62 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493392.712977 +SentRTP: 1724693360 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0xdb66b948 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 44307 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:56:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524895499 +Priority: 1 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Variable: LOCAL(AR +Value: + + +12:56:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: +Device: PJSIP/rt_769402 +State: RINGINUSE + + +12:56:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Variable: BRIDGEPEER +Value: PJSIP/12-00001262 +DestChannel: PJSIP/rt_769402-00001263 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989524895499 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493378.10355 +DestLinkedid: 1724493378.10354 +DialStatus: ANSWER +BridgeUniqueid: 062680f9-e397-4450-a7a7-857c5afd098e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:56:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: BRIDGEPVTCALLID +Value: b5d2e895-90f4-46ea-a59f-4d474fff484d + + +12:56:37 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989052916127 +Priority: 1 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x10e45e62 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493397.713020 +SentRTP: 1724733200 +SentPackets: 1500 +SentOctets: 240000 +Report0SourceSSRC: 0xdb66b948 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 44557 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:56:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989052916127 +Priority: 1 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +12:56:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +12:56:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +Variable: BRIDGEPEER +Value: PJSIP/13-00001260 +DestChannel: PJSIP/rt_769402-00001261 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989052916127 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493362.10353 +DestLinkedid: 1724493362.10352 +DialStatus: ANSWER +BridgeUniqueid: b3d0a34e-5011-44ee-aab9-692f372a3cec +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +12:56:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: BRIDGEPVTCALLID +Value: 103748fc-9bef-4cd2-b960-514e751d6880 + + +12:56:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:56:41 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13-00001260 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: b3d0a34e-5011-44ee-aab9-692f372a3cec +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:56:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 172449 +Linkedid: 1724493362.10352 +Variable: ARG2 +Value: +BridgeUniqueid: b3d0a34e-5011-44ee-aab9-692f372a3cec +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:56:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001261 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989052916127 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; s +BridgeUniqueid: b3d0a34e-5011-44ee-aab9-692f372a3cec +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 + + +12:56:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493362.10353 +Linkedid: 1724493362.10352 +Variable: MACRO_DEPTH +Value: 1 +Extension: h +Application: Macro +AppData: hangupcall +Cause: 16 +Cause-txt: Normal Clearing + + +12:56:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001260 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 4 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: MACRO_CONTEXT +Value: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10377 +Source: 78162769402 +Destination: 989052916127 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001261 +LastApplication: Dial +LastData: PJSIP/+79052916127@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 38 +BillableSeconds: 2 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493362.10352 +UserField: +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Extension: s +Application: Hangup +AppData: + + +12:56:41 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-00001260 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989052916127 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493362.10352 +Linkedid: 1724493362.10352 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000211; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:56:41 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/13 +ActionID: 10378 + + +12:56:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T12 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +12:56:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T12 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +12:56:49 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x2027af94 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493409.733860 +SentRTP: 1724613392 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x86b8c968 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 23858 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:56:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Variable: RTPAUDIOQOSBRIDGED +Value: ssrc=1912963335;themssrc=3107323446;lp=0;rxjitter=0.000000;rxcount=766;txjitter=0.001250;txcount=771;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +12:56:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 9895248954 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000226; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:56:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: +Priority: 28 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: ANSWEREDTIME_MS +Value: 15657 +BridgeUniqueid: 062680f9-e397-4450-a7a7-857c5afd098e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:56:50 + +Event: Newexten +Privilege: call,all +Channel: PJSIP/12-00001262 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +12:56:50 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/rt_769402-00001263 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 062680f9-e397-4450-a7a7-857c5afd098e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:56:50 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 062680f9-e397-4450-a7a7-857c5afd098e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-00001263 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524895499 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493378.10355 +Linkedid: 1724493378.10354 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOSJITTER +Value: minr + + +12:56:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001262 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; +Cause: 16 +Cause-txt: Normal Clearing + + +12:56:50 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/12 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524895499 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493378.10354 +Linkedid: 1724493378.10354 +Variable: RTPAUDIOQOSMES +Value: 1 +Device: PJSIP/12 +State: NOT_INUSE +Source: 78162769402 +Destination: 989524895499 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001263 +LastApplication: Dial +LastData: PJSIP/+79524895499@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 31 +BillableSeconds: 15 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493378.10354 +UserField: +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 338 +LastCall: 1724493287 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10380 + + +12:57:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +12:57:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724493438.10356 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:57:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724493438. +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-125718 +Variable: __YEAR +Value: 2024 + + +12:57:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:57:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +12:57:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:57:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +12:57:18 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +12:57:18 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +12:57:18 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +12:57:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 24 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Goto +AppData: timeconditions,2,1 + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 2 +Application: AGI +AppData: agi + + +12:57:20 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +CommandId: 566214429 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:57:20 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +CommandId: 507889823 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +CommandId: 1527626185 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724493438.103 +Linkedid: 1724493438.10356 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493438.10 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: AMPUSER +Value: 79118981869 +Extension: s +Application: Set +AppData: AMPUSER=79118981869 + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 791 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +12:57:20 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +12:57:20 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 791189 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633334483 +Priority: 1 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +EventTV: 2024-08-24T12 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 13 +SessionID: 7a4170ce-8030532e18787e4fcc9f0080f0808080@KX-TGP600RU +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.12/5070 +UsingPassword: 1 + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633334483 +Priority: 1 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: 989633334483 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, +Variable: MACRO_DEPTH +Value: 1 + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000126 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +12:57:20 + +Event: Newexten +Privilege: di +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +12:57:20 + +Event: Newexten +Privilege: d +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 49 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 1 + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633334483 +Priority: 2 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989633334483 +Application: Gosub +AppData: sub-record-check,s,1(out,989633334483,dontcare) + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Реги +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.1035 +Variable: RECMODE +Value: yes +Extension: out +Application: Set +AppData: RECMODE=yes + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: __CALLFILENAME +Value: out-989633334483-13-20240824-125720-1724493440.10357 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989633334483-13-20240824-125720-1724493440.10357 + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1 +Linkedid: 1724493440.10357 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +12:57:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: out +Application: Return +AppData: +Variable: ARG3 +Value: + + +12:57:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633334483 +Priority: 6 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MOHCLASS +Value: default +Extension: 989633334483 +Application: Set +AppData: MOHCLASS=default + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633334483 +Priority: 11 +Uniqueid: 1724493440.1 +Linkedid: 1724493440.10357 +Variable: _NODEST +Value: +Extension: 989633334483 +Application: Macro +AppData: dialout-trunk,6,+79633334483,,off + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493440 +Linkedid: 1724493440.10357 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +12:57:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trun +Exten: s +Priority: 13 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: ARG1 +Value: 6 +Extension: s +Application: Macro +AppData: outbound-callerid,6 + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) +Variable: MACRO_DEPTH +Value: 2 + + +12:57:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 13 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Hangup() + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"Secre + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 +Variable: MACRO_DEPTH +Value: 2 + + +12:57:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:57:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +12:57:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() +Variable: MACRO_DEPTH +Value: 1 + + +12:57:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493440 +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493440.10357 +Linkedid: 1724493 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +12:57:21 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633334483 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493 +Linkedid: 1724493440.10357 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79633334483) + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633334483 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 24 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:57:21 + +Event: VarSet +Privilege: di +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633334483 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Dial +AppData: PJSIP/+79633334483@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79633334483^989633334483^6^1724493440^^78162769402) + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633334483 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: PROGRESSTIME +Value: + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001266 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493440.10358 +Linkedid: 1724493440.10357 +Variable: ROUTEID +Value: 1 + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001266 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493440.10358 +Linkedid: 1724493440.10357 +Variable: __MONTH +Value: 08 + + +12:57:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001266 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633334483 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724493440.10358 +Linkedid: 1724493440.10357 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:57:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001266 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633334483 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493440.10358 +Linkedid: 1724493440.10357 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +12:57:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001266 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633334483 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493440.10358 +Linkedid: 1724493440.10357 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +12:57:21 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/rt_769402-00001266 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633334483 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001266 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989633334483 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493440.10358 +DestLinkedid: 1724493440.10357 +DialString: +79633334483@rt_769402 + + +12:57:21 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633334483 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 28 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: 989633334483 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: INUSE +Variable: RINGTIME_MS +Value: 384 +DestChannel: PJSIP/rt_769402-00001266 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989633334483 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989633334483 +DestPriority: 1 +DestUniqueid: 1724493440.10358 +DestLinkedid: 1724493440.10357 +DialStatus: RINGING +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:57:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633334483 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: PROGRESSTIME_MS +Value: 4274 + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 194 +Application: QueueLog +AppData: 194,1724493438.10356,NONE,DID,79217365096 + + +12:57:29 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:57:29 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493438.10 +Linkedid: 1724493438.10356 +Variable: QUEUEJOINTIME +Value: 1724493449 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493449.10359 +Linkedid: 1724493438.10356 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493449.10359 +Linkedid: 1724493438.10356 +Variable: __RINGINGSENT +Value: TRUE + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493449.10359 +Linkedid: 1724493438.10356 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: __FROMQUEUEEXTEN +Value: 79118981869 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: __TIMESTR +Value: 20240824-125718 + + +12:57:29 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b01;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493449.10359 +LocalOneLinkedid: 1724493438.10356 +LocalTwoChannel: Local/12@from-queue-00000b01;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79118981869 +LocalTwoCallerIDName: 79118981869 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493449.10360 +LocalTwoLinkedid: 1724493438.10356 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b01;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79118981869 +DestConnectedLineName: 79118981869 +DestLanguage: en +DestAccountCode: + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493449.10361 +Linkedid: 1724493438.10356 +DestChannel: Local/12@from-queue-00000b01;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724493449.10359 +DestLinkedid: 1724493438.10356 +DialString: Local/12@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493449.10361 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493449.10361 +Linkedid: 1724493438.10356 +Variable: __DIRECTION +Value: + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001264 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: __MON_FMT +Value: wav + + +12:57:29 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b02;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493449.10361 +LocalOneLinkedid: 1724493438.10356 +LocalTwoChannel: Local/10@from-queue-00000b02;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79118981869 +LocalTwoCallerIDName: 79118981869 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493449.10362 +LocalTwoLinkedid: 1724493438.10356 +LocalOptimization: No + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 4 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +DestChannel: Local/10@from-queue-00000b02;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724493449.10361 +DestLinkedid: 1724493438.10356 +DialString: Local/10@from-queue/n +Extension: 12 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: Macro +AppData: 0?Set(__CWIGNORE=) + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724493449.10360 + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000b01;2 + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: QAGENT +Value: 10 +Extension: 10 +Application: Set +AppData: QAGENT=10 + + +12:57:29 + +Event: Va +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: DB_RESULT +Value: 0 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG1 +Value: novm + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: AMPUSER=79118981869 +Variable: MACRO_DEPTH +Value: 2 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79118981869 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911898186 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:57:29 + +Event: VarSet +Privilege: d +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: CDR(cnam)=79118981869 +Variable: MACRO_DEPTH +Value: 2 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: RingGroupMethod=none +Variable: MACRO_DEPTH +Value: 1 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +12:57:29 + +Event: Newexten +Privilege: dial +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: __FROMEXTEN=79118981869 +Variable: MACRO_DEPTH +Value: 1 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 172449 +Linkedid: 1724493438.10356 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: __CALLFILENAME +Value: external-10-79118981869-20240824-125729-1724493449.10362 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79118981869-20240824-125729-1724493449.10362 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000b02;2 +Variable: MACRO_DEPTH +Value: 1 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-chec +Exten: exten +Priority: 12 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: ARG3 +Value: 10 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: DB_RESULT +Value: 10 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +12:57:29 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 791 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +12:57:29 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctse +Priority: 1 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79118981869 +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:57:30 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724493449.10362 +Linkedid: 172449 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: PROGR +Value: + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493 +Linkedid: 1724493438.10356 +Variable: ARG1 +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten- +Exten: s +Priority: 3 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-v +Exten: s +Priority: 1 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: __KEEPCID +Value: TRUE +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001267 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: __REC_POLICY_MODE +Value: YES + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001267 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: __CALLEE_ACCOUNCODE +Value: + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Extension: s +Application: GotoIf +AppData: 0?initialized +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001264 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001267 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: __FROM_DID +Value: 79217365096 + + +12:57:30 + +Event: VarSet +Privilege: dialpla +Channel: PJSIP/10-00001267 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/10-00001267 +Variable: __DAY +Value: 24 + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: __ +Variable: MACRO_DEPTH +Value: 1 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +12:57:30 + +Event: N +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001267 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001267 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: While +AppData: 0 + + +12:57:30 + +Event: V +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: MACRO_DEPTH +Value: 1 + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79118981869) + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7911 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79118981869-20240824-125729-1724493449.10360.wav,abi(), + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: reco +Priority: 23 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=12) + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=2) + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 +Variable: THISDIAL +Value: PJSIP/12 + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: dstring +Application: NoOp +AppData: Debug +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: dstring +Priority: 19 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: DSTRING +Value: PJSIP/12/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 38 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:57:30 + +Event: VarSet +Privilege: dialplan +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: ANSWEREDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001268 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724493438.10356 +Variable: __CWIGNORE +Value: TRUE + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001268 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493449.10364 +Linkedid: 17244934 +Variable: __MONTH +Value: 08 + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001268 +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493449.10364 +Linkedid: 1724493438.10356 +Variable: __QCONTEXT +Value: 0 + + +12:57:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001268 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493449.10364 +Linkedid: 1724493438.10356 +Variable: __DIRECTION +Value: + + +12:57:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001268 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493449.10364 +Linkedid: 1724493438.10356 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +12:57:30 + +Event: DialBegin +Privilege: call,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-00001268 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 7911898186 +DestConnectedLineName: 79118981869 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493449.10363 +DestLinkedid: 1724493438.10356 +DialString: 10/sip + + +12:57:30 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001266 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633334483 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 2819 +DestChannel: Local/12@from-queue-00000b01;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79118981869 +DestConnectedLineName: 79118981869 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493449.10359 +DestLinkedid: 1724493438.10356 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 338 +LastCall: 1724493287 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:57:33 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3426 +Device: PJSIP/10 +State: RINGING +DestChannel: Local/10@from-queue-00000b02;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79118981869 +DestConnectedLineName: 79118981869 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493449.10361 +DestLinkedid: 1724493438.10356 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 311 +LastCall: 1724493359 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:57:35 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001266 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633334483 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633334483 +Priority: 1 +Uniqueid: 1724493440.10358 +Linkedid: 1724493440.10357 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0ff5582a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493455.203558 +SentRTP: 1724573440 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x293f2cb0 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 9438 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 2 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:57:45 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001266 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633334483 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633334483 +Priority: 1 +Uniqueid: 1724493440.10358 +Linkedid: 1724493440.10357 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0ff5582a +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493465.202909 +SentRTP: 1724653440 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0x293f2cb0 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 9938 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:57:48 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633334483 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000157; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 127 + + +12:57:48 + +Event: SoftHangupRequest +Privilege: call,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633334483 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: MACRO_PRIORITY +Value: + + +12:57:48 + +Event: VarSet +Privilege: dialplan +Channel: PJSIP/rt_769402-00001266 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633334483 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633334483 +Priority: 1 +Uniqueid: 1724493440.10358 +Linkedid: 1724493440.10357 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: RTPAUDIOQOS +Value: ssrc=267737130;themssrc=692006064;lp=0;rxjitter=0.000000;rxcount=1171;txjitter=0.000375;txcount=1167;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 + + +12:57:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633334483 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493440.10358 +Linkedid: 1724493440.10357 +Variable: RTPAUDIOQOSMES +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10381 + + +12:57:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001265 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633334483 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +12:57:48 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/13 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633334483 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724493440.10357 +Linkedid: 1724493440.10357 +Variable: RTPAUDIOQOSMES +Value: 1 +Source: 78162769402 +Destination: 989633334483 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001266 +LastApplication: Dial +LastData: PJSIP/+79633334483@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 27 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724493440.10357 +UserField: +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/13 +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10382 + + +12:57:50 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001267 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/10 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 311 +LastCall: 1724493359 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: +Wrapuptime: 0 + + +12:57:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001267 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 4 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CFIGNORE= + + +12:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001267 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 7 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +12:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001267 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +12:57:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001267 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +12:57:50 + +Event: DialEnd +Privilege: call, +Channel: Local/10@from-queue-00000b02;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493449.10361 +Linkedid: 1724493438.10356 +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/10-00001267 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79118981869 +DestConnectedLineName: 79118981869 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724493449.10363 +DestLinkedid: 1724493438.10356 +DialStatus: ANSWER +BridgeUniqueid: 031ea795-c777-43bb-bf90-722033d248f1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:57:50 + +Event: QueueCallerLeave +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493449.10359 +Linkedid: 1724493438.10356 +DestChannel: Local/12@from-queue-00000b01;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79118981869 +DestConnectedLineName: 79118981869 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493449.10359 +DestLinkedid: 1724493438.10356 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE + + +12:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: ARG1 +Value: novm +DestChannel: PJSIP/12-00001268 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79118981869 +DestConnectedLineName: 79118981869 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724493449.10364 +DestLinkedid: 1724493438.10356 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 21 +RingTime: 21 +BridgeUniqueid: bb3b58dc-ccc9-44c7-8ad1-2a6869caa132 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: NOT_INUSE +DialStatus: CANCEL + + +12:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: ARG4 +Value: + + +12:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b01;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:57:50 + +Event: Bridg +Privilege: call,all +Channel: PJSIP/10-00001267 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 031ea795-c777-43bb-bf90-722033d248f1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:57:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 791189818 +CallerIDName: 79118981869 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493449.10360 +Linkedid: 1724493438.10356 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: + + +12:57:50 + +Event: QueueMemberStatus +Privilege: agent,all +BridgeUniqueid: 031ea795-c777-43bb-bf90-722033d248f1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/12-00001268 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724493449.10364 +Linkedid: 1724493438.10356 +Variable: BRIDGEPVTCALLID +Value: 1 +Source: 79118981869 +Destination: 12 +DestinationContext: ext-local +CallerID: "79118981869" <79118981869> +DestinationChannel: PJSIP/12-00001268 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 21 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724493449.10360 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/12 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10383 +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +12:57:50 + +Event: UserEvent +Privilege: user,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 338 +LastCall: 1724493287 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/12 +ActionID: 10385 + + +12:58:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: sub-record-check,s,1(in,79217365096,dontcare) + + +12:58:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __YEA +Value: 08 + + +12:58:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: __MON_FMT +Value: wav + + +12:58:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: FROMEXTEN +Value: 79539047403 + + +12:58:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:58:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 + + +12:58:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megaf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +12:58:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365 +Priority: 12 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __MOHCLASS +Value: + + +12:58:33 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: 79217365096 +Application: Answer +AppData: + + +12:58:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +12:58:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 21 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(name-pres)=allowed_not_screened + + +12:58:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: 2 +Application: AGI +AppData: agi + + +12:58:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +CommandId: 171935525 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +12:58:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +CommandId: 1031604673 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +12:58:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +CommandId: 516743887 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +12:58:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.103 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +12:58:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001269 + + +12:58:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001269 + + +12:58:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +12:58:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: CDR(cnum)=79539047403 +Variable: MACRO_DEPTH +Value: 1 + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79539047403 + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001269)=TRUE + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724493513.10 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +12:58:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +12:58:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +12:58:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +12:58:35 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/10-00001267 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x55a309dc +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493515.587934 +SentRTP: 26869336 +SentPackets: 2251 +SentOctets: 360160 +Report0SourceSSRC: 0xf38d7770 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 42240 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 11 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: 194 +Application: QueueLog +AppData: 194,1724493513.10365,NONE,DID,79217365096 + + +12:58:44 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:58:44 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493513.10 +Linkedid: 1724493513.10365 +Variable: QUEUEJOINTIME +Value: 1724493524 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493524.10366 +Linkedid: 1724493513.10365 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493524.10366 +Linkedid: 1724493513.10365 +Variable: __RINGINGSENT +Value: TRUE + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493524.10366 +Linkedid: 1724493513.10365 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: __FROMQUEUEEXTEN +Value: 79539047403 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: __TIMESTR +Value: 20240824-125833 + + +12:58:44 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b03;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493524.10366 +LocalOneLinkedid: 1724493513.10365 +LocalTwoChannel: Local/12@from-queue-00000b03;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539047403 +LocalTwoCallerIDName: 79539047403 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493524.10367 +LocalTwoLinkedid: 1724493513.10365 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b03;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: en +DestAccountCode: + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493524.10368 +Linkedid: 1724493513.10365 +DestChannel: Local/12@from-queue-00000b03;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724493524.10366 +DestLinkedid: 1724493513.10365 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493524.10368 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493524.10368 +Linkedid: 1724493513.10365 +Variable: __DIRECTION +Value: + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001269 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: __MON_FMT +Value: wav + + +12:58:44 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b04;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493524.10368 +LocalOneLinkedid: 1724493513.10365 +LocalTwoChannel: Local/13@from-queue-00000b04;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539047403 +LocalTwoCallerIDName: 79539047403 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493524.10369 +LocalTwoLinkedid: 1724493513.10365 +LocalOptimization: No + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 4 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +DestChannel: Local/13@from-queue-00000b04;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724493524.10368 +DestLinkedid: 1724493513.10365 +DialString: Local/13@from-queue/n +Extension: 12 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: Macro +AppData: 0?Set(__CWIGNORE=) + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724493524.10367 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000b03;2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: HOTDESCKCHAN +Value: 12@from-queue-00000b03;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000b03;2 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: s +Application: E +AppData: 0?Set(HOTDESKCALL=1) +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79539047403 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493524.10366 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724493524.10 +Linkedid: 1724493513.10365 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 172449 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79539047403-20240824-125844-1724493524.10367 +Variable: MACRO_DEPTH +Value: 1 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: __RECORD_ID +Value: Local/12@from-queue-00000b03;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000b03;2 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 3 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: 13 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 2 +Uniqueid: 1724493 +Linkedid: 1724493513.10365 +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG4 +Value: 0 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724493524.10369 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: CHANEXTENCONTEXT +Value: 13@from-queue-00000b04;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000b04;2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000b04;2 +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: CALLERID(number)=79539047403 +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: recordcheck +Application: Return +AppData: +Variable: ARGC +Value: + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-chec +Exten: exten +Priority: 12 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: ARG3 +Value: 12 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: DB_RESULT +Value: 12 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 795 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctse +Priority: 1 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79539047403 +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +12:58:44 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724493524.10367 +Linkedid: 172449 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: PROGR +Value: + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Variable: __REC_POLICY_MODE +Value: YES + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистра +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Variable: __CALLEE_ACCOUNCODE +Value: + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/12-0000126a + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539047 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_EXTEN +Value: 13 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +12:58:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +12:58:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: NOW=1724493524 +Variable: MACRO_DEPTH +Value: 1 + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-125844 + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: DB_RESULT +Value: yes + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +12:58:45 + +Event: V +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79539047403) + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7953 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79539047403-20240824-125844-1724493524.10369.wav,abi(), + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: reco +Priority: 23 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +DestChannel: PJSIP/12-0000126a +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493524.10370 +DestLinkedid: 1724493513.10365 +DialString: 12/sip +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +12:58:45 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: +DestChannel: Local/12@from-queue-00000b03;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: ru +DestAccountCode: + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Device: Local/12@from-queue +State: INUSE +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +12:58:45 + +Event: VarSet +Privilege: +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: MACRO_DEPTH +Value: 2 + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724493524.10 +Linkedid: 1724493513.10365 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79539047403 + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALE + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724493524 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: RINGTIME +Value: + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000126b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493524.10371 +Linkedid: 1724493513.10365 +Variable: __CALLFILENAME +Value: external-1 + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000126b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493524.10371 +Linkedid: 1724493513.10365 +Variable: __TTL +Value: 63 + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000126b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493524.10371 +Linkedid: 1724493513.10365 +Variable: __FROMQUEUEEXTEN +Value: 79539047403 + + +12:58:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000126b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724493524.10371 +Linkedid: 1724493513.10365 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +12:58:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000126b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724493524.10371 +Linkedid: 1724493513.10365 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +12:58:45 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/13@from-queue-00000b04;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493524.10368 +DestLinkedid: 1724493513.10365 +DialString: 13/sip +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE + + +12:58:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +12:58:46 + +Event: DialState +Privilege: call,all +Device: PJSIP/12 +State: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 338 +LastCall: 1724493287 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: RINGTIME_MS +Value: 2435 +DestChannel: Local/12@from-queue-00000b03;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493524.10366 +DestLinkedid: 1724493513.10365 +DialStatus: RINGING + + +12:58:47 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 3105 +DestChannel: PJSIP/13-0000126b +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724493524.10371 +DestLinkedid: 1724493513.10365 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:58:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/12 +State: INUSE + + +12:58:49 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/12-0000126a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539047403 +ConnectedLineName: 795390 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: CFIGNORE= +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 338 +LastCall: 1724493287 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: CFIGNORE +Value: + + +12:58:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +12:58:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001269)= + + +12:58:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=12/sip + + +12:58:49 + +Event: Newstate +Privilege: call,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x0249ae7d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493529.147326 +SentRTP: 119247 +SentPackets: 726 +SentOctets: 116007 +Report0SourceSSRC: 0x00060055 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 1770 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 0 +Report0LSR: 479618990 +Report0DLSR: 3.0160 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/12-0000126a +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724493524.10370 +DestLinkedid: 1724493513.10365 +DialStatus: ANSWER + + +12:58:49 + +Event: DeviceStateChange +Privilege: call,all +BridgeUniqueid: af112a3e-3d5c-429d-baf8-5b364e2c6d3b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000b03;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493524.10366 +Linkedid: 1724493513.10365 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: ec454e76-7bc7-4f49-bfd9-0e12477df0d4 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: + + +12:58:49 + +Event: DeviceStateChan +Privilege: call,all +Channel: Local/13@from-queue-00000b04;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493524.10368 +Linkedid: 1724493513.10365 +DestChannel: Local/13@from-queue-00000b04;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493524.10368 +DestLinkedid: 1724493513.10365 +DialStatus: CANCEL +Device: Local/12@from-queue +State: INUSE +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +12:58:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Queue: 194 +Position: 1 +Count: 0 +DestChannel: PJSIP/13-0000126b +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724493524.10371 +DestLinkedid: 1724493513.10365 +DialStatus: CANCEL +Variable: ARG3 +Value: 0 + + +12:58:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +DestChannel: Local/12@from-queue-00000b03;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493524.10366 +DestLinkedid: 1724493513.10365 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 5 +RingTime: 4 +Variable: ARG4 +Value: + + +12:58:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +12:58:49 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b04;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: d0e61474-a7b5-479f-9072-3fc0708f6966 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 26 +Cause-txt: Answered elsewhere +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Source: 79539047403 +Destination: 13 +DestinationContext: ext-local +CallerID: "79539047403" <79539047403> +DestinationChannel: PJSIP/13-0000126b +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 12 +AnswerTime: +EndTime: 2024-08-24 12 +Duration: 4 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724493524.10369 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10386 + + +12:58:49 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/12@from-queue-00000b03;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724493524.10369 +Linkedid: 1724493513.10365 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +Device: Local/13@from-queue +State: NOT_INUSE +Cause: 26 +Cause-txt: Answered elsewhere +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10387 +BridgeUniqueid: d0e61474-a7b5-479f-9072-3fc0708f6966 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:58:49 + +Event: RTCPSent +Privilege: reporting,all +BridgeUniqueid: d0e61474-a7b5-479f-9072-3fc0708f6966 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10388 +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6a33ce16 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493529.291260 +SentRTP: 1724960344 +SentPackets: 4461 +SentOctets: 713607 +Report0SourceSSRC: 0x00040197 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 6316 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 1 +Report0LSR: 478601084 +Report0DLSR: 3.1030 + + +12:59:05 + +Event: MusicOnHoldStart +Privilege: call,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Class: default + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10372 +Linkedid: 1724493513.10365 +Variable: __RECORD_ID +Value: Local/12@from-queue-00000b03;2 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-intern +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10372 +Linkedid: 1724493513.10365 +Variable: __PICKUPMARK +Value: 12 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10372 +Linkedid: 1724493513.10365 +Variable: __NODEST +Value: 194 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xf +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10372 +Linkedid: 1724493513.10365 +Variable: __DIRECTION +Value: +BridgeUniqueid: bbf0ab28-da12-4e28-8d15-c0ddba0bb728 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: __REC_POLICY_MODE +Value: YES + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: __CALLEE_ACCOUNCODE +Value: + + +12:59:07 + +Event: Va +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +12:59:07 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/60@from-internal-xfer-00000b05;1 +ChannelState: 0 +ChannelStateDesc: D +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/60@from-internal-xfer-00000b05;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-internal-xfer +LocalOneExten: 60 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493547.10372 +LocalOneLinkedid: 1724493513.10365 +LocalTwoChannel: Local/60@from-internal-xfer-00000b05;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 12 +LocalTwoCallerIDName: Регистратура_1 +LocalTwoConnectedLineNum: +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-internal-xfer +LocalTwoExten: 60 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493547.10373 +LocalTwoLinkedid: 1724493513.10365 +LocalOptimization: Yes + + +12:59:07 + +Event: NewConnectedLine +Privilege: call,all +BridgeUniqueid: bbf0ab28-da12-4e28-8d15-c0ddba0bb728 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/12-0000126a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Variable: BRIDGEPEER +Value: Local/60@from-internal-xfer-00000b05;1 + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: 60 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, +Variable: MACRO_DEPTH +Value: 1 + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: AMPUSER +Value: 12 +Extension: s +Application: Set +AppData: AMPUSER=12 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: HOTDESKCALL +Value: 0 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=12) +Variable: REALCALLERIDNUM +Value: 12 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: AMPUSERCIDNAME +Value: Регистратура_1 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?report + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=) +Variable: MACRO_DEPTH +Value: 1 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 26 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: s +Application: ExecIf +AppData: 1?Set(GROUP(concurrency_limit)=12) +Variable: MACRO_DEPTH +Value: 1 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_ +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: s +Application: GotoIf +AppData: 0?cnum +Variable: MACRO_DEPTH +Value: 1 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: MA +Value: +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 2 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: RECMODE +Value: +Extension: out +Application: Set +AppData: RECMODE= + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: recordcheck +Application: Return +AppData: +Variable: LOCAL(ARGC) +Value: 3 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 8 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: ARG1 +Value: +Extension: out +Application: Return +AppData: + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 7 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: 60 +Application: Set +AppData: MOHCLASS=default +Variable: INTRACOMPANYROUTE +Value: YES + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 12 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: 60 +Application: Macro +AppData: _NODEST= +Variable: _NODEST +Value: + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 12 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 3 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: GosubIf +AppData: 0?sub-pincheck,s,1() + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 6 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: DIAL_NUMBER +Value: 60 +Extension: s +Application: Set +AppData: DIAL_NUMBER=60 + + +12:59:07 + +Event: Newexten +Privilege: dialplan,al +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 9 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=T +Variable: MACRO_DEPTH +Value: 1 + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=60 + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: ARG1 +Value: 5 +Extension: s +Application: MacroExit +AppData: + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 60 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=60) + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Extension: s +Application: Dial +AppData: IAX2/Rahmaninovo/60,300,Tb(func-apply-sipheaders^s^1,(5))U(sub-send-obroute-email^60^60^5^^Регистратура_1^12) +Variable: MACRO_DEPTH +Value: 1 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: PROGRESSTIME +Value: + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-645 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 1 +Uniqueid: 1724493547.10374 +Linkedid: 1724493513.10365 +Variable: __DIAL_OPTIONS +Value: HhTtr + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-645 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 1 +Uniqueid: 1724493547.10374 +Linkedid: 1724493513.10365 +Variable: __TIMESTR +Value: 20240824-125844 + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-645 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 1 +Uniqueid: 1724493547.10374 +Linkedid: 1724493513.10365 +Variable: __SIGNORE +Value: TRUE + + +12:59:07 + +Event: NewCallerid +Privilege: call,all +Channel: IAX2/Rahmaninovo-645 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 60 +CallerIDName: CID +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: en +AccountCode: +Context: +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10374 +Linkedid: 1724493513.10365 +Variable: __DIRECTION +Value: +Extension: 60 +Application: AppDial +AppData: (Outgoing Line) + + +12:59:07 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-645 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 60 +CallerIDName: CID +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: en +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493547.10374 +Linkedid: 1724493513.10365 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info + + +12:59:07 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-645 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 60 +CallerIDName: CID +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: en +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 9 +Uniqueid: 1724493547.10374 +Linkedid: 1724493513.10365 +Extension: s +Application: ExecIf +AppData: 0?Set(sipheader= +CallerIDName: +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10372 +Linkedid: 1724493513.10365 +BridgeUniqueid: b6121157-0840-489f-a10a-ddf44192ce2a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) +DestChannel: Local/60@from-internal-xfer-00000b05;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: +DestCallerIDName: +DestConnectedLineNum: 12 +DestConnectedLineName: Регистратура_1 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal-xfer +DestExten: 60 +DestPriority: 1 +DestUniqueid: 1724493547.10372 +DestLinkedid: 1724493513.10365 +DialStatus: ANSWER +Variable: BRIDGEPVTCALLID +Value: ec454e76-7bc7-4f49-bfd9-0e12477df0d4 + + +12:59:12 + +Event: VarSet +Privilege: dialplan,all +Device: Local/60@from-internal-xfer +State: INUSE +BridgeUniqueid: b6121157-0840-489f-a10a-ddf44192ce2a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: BRIDGEPEER +Value: IAX2/Rahmaninovo-645 + + +12:59:17 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493449.10363 +Linkedid: 1724493438.10356 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:59:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001267 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 172 +Linkedid: 1724493438.10356 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 031ea795-c777-43bb-bf90-722033d248f1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +12:59:17 + +Event: BridgeDestroy +Privilege: call,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10389 +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +BridgeUniqueid: 031ea795-c777-43bb-bf90-722033d248f1 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:59:17 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: ARG3 +Value: 0 + + +12:59:17 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b02;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493449.10362 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +12:59:17 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79118981869 +ConnectedLineName: 79118981869 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493449.10361 +Linkedid: 1724493438.10356 +Variable: BRIDGEPEER +Value: +Cause: 16 +BridgeUniqueid: bb3b58dc-ccc9-44c7-8ad1-2a6869caa132 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing + + +12:59:17 + +Event: VarSet +Privilege: dialplan,all +Device: Local/10@from-queue +State: NOT_INUSE +BridgeUniqueid: bb3b58dc-ccc9-44c7-8ad1-2a6869caa132 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_PRIORITY +Value: 1 + + +12:59:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +Source: 79118981869 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79118981869" <79118981869> +DestinationChannel: Local/12@from-queue-00000b01;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 31 +BillableSeconds: 31 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724493438.10356 +UserField: + + +12:59:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001264 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000158; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=082.507040; stdevtxmes=013 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10390 + + +12:59:17 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79118981869 +CallerIDName: 79118981869 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493438.10356 +Linkedid: 1724493438.10356 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79118981869 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79118981869" <79118981869> +DestinationChannel: Local/10@from-queue-00000b02;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 108 +BillableSeconds: 108 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493438.10356 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10392 + + +12:59:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126a +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: +CallerIDName: +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10372 +Linkedid: 1724493513.10365 +Variable: RTPAUDIOQOSRTTBRIDGED +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +12:59:21 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: BRIDGEPEER +Value: +Source: 12 +Destination: s +DestinationContext: macro-dial-one +CallerID: "Регистратура_1" <12> +DestinationChannel: Local/60@from-internal-xfer-00000b05;1 +LastApplication: ExecIf +LastData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 14 +BillableSeconds: 14 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493524.10370 +UserField: +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +BridgeUniqueid: bbf0ab28-da12-4e28-8d15-c0ddba0bb728 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +ToBridgeUniqueid: af112a3e-3d5c-429d-baf8-5b364e2c6d3b +ToBridgeType: basic +ToBridgeTechnology: simple_bridge +ToBridgeCreator: +ToBridgeName: +ToBridgeNumChannels: 1 +ToBridgeVideoSourceMode: none +FromBridgeUniqueid: bbf0ab28-da12-4e28-8d15-c0ddba0bb728 +FromBridgeType: basic +FromBridgeTechnology: simple_bridge +FromBridgeCreator: +FromBridgeName: +FromBridgeNumChannels: 1 +FromBridgeVideoSourceMode: none + + +12:59:21 + +Event: AttendedTransfer +Privilege: call,all +BridgeUniqueid: af112a3e-3d5c-429d-baf8-5b364e2c6d3b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/60@from-internal-xfer-00000b05;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493547.10372 +Linkedid: 1724493513.10365 +Variable: BRIDGEPVTCALLID +Value: +Result: Success +OrigTransfererChannel: PJSIP/12-0000126a +OrigTransfererChannelState: 6 +OrigTransfererChannelStateDesc: Up +OrigTransfererCallerIDNum: 12 +OrigTransfererCallerIDName: Регистратура_1 +OrigTransfererConnectedLineNum: +OrigTransfererConnectedLineName: +OrigTransfererLanguage: ru +OrigTransfererAccountCode: +OrigTransfererContext: macro-dial-one +OrigTransfererExten: s +OrigTransfererPriority: 1 +OrigTransfererUniqueid: 1724493524.10370 +OrigTransfererLinkedid: 1724493513.10365 +OrigBridgeUniqueid: af112a3e-3d5c-429d-baf8-5b364e2c6d3b +OrigBridgeType: basic +OrigBridgeTechnology: simple_bridge +OrigBridgeCreator: +OrigBridgeName: +OrigBridgeNumChannels: 2 +OrigBridgeVideoSourceMode: none +SecondTransfererChannel: PJSIP/12-0000126a +SecondTransfererChannelState: 6 +SecondTransfererChannelStateDesc: Up +SecondTransfererCallerIDNum: 12 +SecondTransfererCallerIDName: Регистратура_1 +SecondTransfererConnectedLineNum: +SecondTransfererConnectedLineName: +SecondTransfererLanguage: ru +SecondTransfererAccountCode: +SecondTransfererContext: macro-dial-one +SecondTransfererExten: s +SecondTransfererPriority: 1 + + +12:59:21 + +Event: BridgeDestroy +Privilege: c +Channel: PJSIP/12-0000126a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493524.10370 +Linkedid: 1724493513.10365 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000226; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +12:59:21 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/12 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 60 +CallerIDName: CID +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: en +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493547.10374 +Linkedid: 1724493513.10365 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10393 + + +12:59:21 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: b6121157-0840-489f-a10a-ddf44192ce2a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: IAX2/Rahmaninovo-645 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: BRIDGEPEER +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +SwapUniqueid: 1724493547.10373 + + +12:59:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: ANSWEREDTIME_MS +Value: 9360 +LocalOneChannel: Local/60@from-internal-xfer-00000b05;1 +LocalOneChannelState: 6 +LocalOneChannelStateDesc: Up +LocalOneCallerIDNum: +LocalOneCallerIDName: +LocalOneConnectedLineNum: 79539047403 +LocalOneConnectedLineName: 79539047403 +LocalOneLanguage: ru +LocalOneAccountCode: +LocalOneContext: from-internal-xfer +LocalOneExten: 60 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493547.10372 +LocalOneLinkedid: 1724493513.10365 +LocalTwoChannel: Local/60@from-internal-xfer-00000b05;2 +LocalTwoChannelState: 6 +LocalTwoChannelStateDesc: Up +LocalTwoCallerIDNum: 79539047403 +LocalTwoCallerIDName: 79539047403 +LocalTwoConnectedLineNum: 60 +LocalTwoConnectedLineName: CID +LocalTwoLanguage: ru +LocalTwoAccountCode: +LocalTwoContext: macro-dialout-trunk +LocalTwoExten: s +LocalTwoPriority: 28 +LocalTwoUniqueid: 1724493547.10373 +LocalTwoLinkedid: 1724493513.10365 +Success: No +Id: 22 +BridgeUniqueid: af112a3e-3d5c-429d-baf8-5b364e2c6d3b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +12:59:21 + +Event: Newexten +Privilege: call,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +12:59:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingf + + +12:59:21 + +Event: Hangup +Privilege: call,all +Channel: Local/60@from-internal-xfer-00000b05;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493547.10373 +Linkedid: 1724493513.10365 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/60@from-internal-xfer +State: NOT_INUSE +Source: +Destination: 60 +DestinationContext: from-internal-xfer +CallerID: "" <> +DestinationChannel: +LastApplication: +LastData: +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 0 +BillableSeconds: 0 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493547.10372 +UserField: +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10394 +Variable: MACRO_PRIORITY +Extension: s +Application: Hangup +AppData: + + +12:59:21 + +Event: UserEvent +Privilege: user,all +AccountCode: +Source: 79539047403 +Destination: 60 +DestinationContext: from-internal-xfer +CallerID: "79539047403" <79539047403> +Channel: LOCAL/60@FROM-INTERNAL-XFER +DestinationChannel: IAX2/Rahmaninovo-645 +LastApplication: Dial +LastData: IAX2/Rahmaninovo/60,300,Tb(func-apply-sipheaders^s^1,(5))U(sub-send-obroute-ema +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 14 +BillableSeconds: 9 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493547.10373 +UserField: +Device: Local/60@from-internal-xfer +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10395 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524843790 +Priority: 1 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493627.1 +Linkedid: 1724493627.10375 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12-0000126c + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493627.10375 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=12 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: DB_RESULT +Value: 12 + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:00:27 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=12 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493627.10375 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524843790 +Priority: 2 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989524843790 +Application: Gosub +AppData: sub-record-check,s,1(out,989524843790,dontcare) + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493627.10375 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493627.10375 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: __CALLFILENAME +Value: out-989524843790-12-20240824-130027-1724493627.10375 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989524843790-12-20240824-130027-1724493627.10375 + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989524843790-12-20240824-130027-1724493627.10375.wav + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524843790 +Priority: 7 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627. +Variable: MOHCLASS +Value: default +Extension: 989524843790 +Application: Set +AppData: MOHCLASS=default + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524843790 +Priority: 11 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_EXTEN +Value: 989524843790 +Extension: 989524843790 +Application: Macro +AppData: dialout-trunk,6,+79524843790,,off + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=12) +Variable: DB_RESULT +Value: + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79524843790 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79524843790 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79524843790) + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Extension: s +Application: Dial +AppData: PJSIP/+79524843790@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79524843790^989524843790^6^1724493627^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: PROGRESSTIME +Value: + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +Variable: __REC_STATUS +Value: RECORDING + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +Variable: __DAY +Value: 24 + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:00:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:00:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493627.1 +Linkedid: 1724493627.10375 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:00:27 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524843790 +Priority: 1 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000126d +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989524843790 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493627.10376 +DestLinkedid: 1724493627.10375 +DialString: +79524843790@rt_769402 + + +13:00:27 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/12 +State: INUSE +Exten: s +Context: macro-dialout-trunk +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/12-0000126c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 28 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: RINGTIME_MS +Value: 301 +DestChannel: PJSIP/rt_769402-0000126d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989524843790 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989524843790 +DestPriority: 1 +DestUniqueid: 1724493627.10376 +DestLinkedid: 1724493627.10375 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:00:44 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-645 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 60 +CallerIDName: CID +ConnectedLineNum: 79539047403 +ConnectedLineName: 79539047403 +Language: en +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493547.10374 +Linkedid: 1724493513.10365 +Variable: BRIDGEPEER +Value: + + +13:00:44 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: b6121157-0840-489f-a10a-ddf44192ce2a +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795390 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Cause: 16 +Cause-txt: Normal Clearing +Device: IAX2/Rahmaninovo +State: UNKNOWN +UserEvent: refreshcallhistory +Value: 120 +Family: refreshcallhistory +ActionID: 10396 +Variable: DIALEDTIME + + +13:00:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 0 + + +13:00:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_PRIORITY +Value: +Source: 79539047403 +Destination: 12 +DestinationContext: ext-local +CallerID: "79539047403" <79539047403> +DestinationChannel: PJSIP/12-0000126a +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 12 +Duration: 22 +BillableSeconds: 18 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493524.10367 +UserField: +Cause: 16 + + +13:00:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493524.10367 +Linkedid: 1724493513.10365 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +13:00:44 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000b03;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Cause: 16 +DestChannel: Local/12@from-queue-00000b03;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539047403 +DestConnectedLineName: 79539047403 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493524.10366 +DestLinkedid: 1724493513.10365 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 5 +TalkTime: 115 +Reason: agent + + +13:00:44 + +Event: SoftHangupRequest +Privilege: call,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: BRIDGEPEER +Value: +CID-CallingPres: 67 (Number Unavailable) +BridgeUniqueid: d0e61474-a7b5-479f-9072-3fc0708f6966 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE + + +13:00:44 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 +Source: 795390474 + + +13:00:44 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 79539047403 +Destination: 12 +DestinationContext: ext-local +CallerID: "79539047403" <79539047403> +Channel: PJSIP/Megafon_3-00001269 +DestinationChannel: IAX2/Rahmaninovo-645 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 13 +Duration: 82 +BillableSeconds: 82 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493524.10367 +UserField: +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10398 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_CONTEXT + + +13:00:44 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001269 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539047403 +CallerIDName: 79539047403 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493513.10365 +Linkedid: 1724493513.10365 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000135; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=074.551597; stdevtxmes=012.043521; +Cause: 16 +Cause-txt: Normal Clearing +Source: 79539047403 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79539047403" <7953 +DestinationChannel: Local/12@from-queue-00000b03;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 12 +AnswerTime: 2024-08-24 12 +EndTime: 2024-08-24 13 +Duration: 131 +BillableSeconds: 131 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493513.10365 +UserField: +Device: PJSIP/Megafon_3 +State: NOT_INUSE + + +13:00:44 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/MEGAFON_3 +ActionID: 10399 + + +13:00:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524843790 +Priority: 1 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +13:00:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +13:00:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +Variable: BRIDGEPEER +Value: PJSIP/12-0000126c +DestChannel: PJSIP/rt_769402-0000126d +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989524843790 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493627.10376 +DestLinkedid: 1724493627.10375 +DialStatus: ANSWER +BridgeUniqueid: 5af9b47a-da8d-427b-9904-fecc8e735af7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +13:00:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: BRIDGEPVTCALLID +Value: 4ec005d2-4f24-463b-b6d0-9dec56556b8a + + +13:00:51 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7b267b8c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493651.805877 +SentRTP: 1724533480 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x9f615a1e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 33809 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:01:01 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7b267b8c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493661.805324 +SentRTP: 1724613480 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x9f615a1e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34309 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:01:06 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7b267b8c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493666.805031 +SentRTP: 1724653480 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0x9f615a1e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34559 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:01:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +Variable: RTPAUDIOQOSRTTBRIDGED +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:01:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: ANSWEREDTIME +Value: 21 +BridgeUniqueid: 5af9b47a-da8d-427b-9904-fecc8e735af7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:01:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: MACRO_CONTEXT +Value: + + +13:01:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493627.10375 +Linkedid: +Cause: 16 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +13:01:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOS +Value: ssrc=170722233;themssrc=1022571598;lp=0;rxjitter=0.000000;rxcount=1038;txjitter=0.001375;txcount=1042;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +BridgeUniqueid: 5af9b47a-da8d-427b-9904-fecc8e735af7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:01:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524843790 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493627.10376 +Linkedid: 1724493627.10375 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.0 +BridgeUniqueid: 5af9b47a-da8d-427b-9904-fecc8e735af7 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:01:07 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/12 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524843790 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493627.10375 +Linkedid: 1724493627.10375 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Source: 78162769402 +Destination: 989524843790 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000126d +LastApplication: Dial +LastData: PJSIP/+79524843790@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 40 +BillableSeconds: 21 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493627.10375 +UserField: +Device: PJSIP/12 +State: NOT_INUSE +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10401 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082914912 +Priority: 1 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493695.1 +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12-0000126e + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=12 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: DB_RESULT +Value: 12 + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:01:36 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=12 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493695.10377 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082914912 +Priority: 2 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989082914912 +Application: Gosub +AppData: sub-record-check,s,1(out,989082914912,dontcare) + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493695.10377 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493695.10377 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: __CALLFILENAME +Value: out-989082914912-12-20240824-130135-1724493695.10377 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989082914912-12-20240824-130135-1724493695.10377 + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989082914912-12-20240824-130135-1724493695.10377.wav + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082914912 +Priority: 7 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695. +Variable: MOHCLASS +Value: default +Extension: 989082914912 +Application: Set +AppData: MOHCLASS=default + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989082914912 +Priority: 11 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_EXTEN +Value: 989082914912 +Extension: 989082914912 +Application: Macro +AppData: dialout-trunk,6,+79082914912,,off + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=12) +Variable: DB_RESULT +Value: + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79082914912 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79082914912 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79082914912) + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082914912 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082914912 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Extension: s +Application: Dial +AppData: PJSIP/+79082914912@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79082914912^989082914912^6^1724493695^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79082914912 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: PROGRESSTIME +Value: + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +Variable: __REC_STATUS +Value: RECORDING + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +Variable: __DAY +Value: 24 + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:01:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:01:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493696.1 +Linkedid: 1724493695.10377 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:01:36 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989082914912 +Priority: 1 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000126f +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989082914912 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493696.10378 +DestLinkedid: 1724493695.10377 +DialString: +79082914912@rt_769402 + + +13:01:36 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-0000126e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082914912 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 28 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: RINGTIME_MS +Value: 327 +DestChannel: PJSIP/rt_769402-0000126f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989082914912 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989082914912 +DestPriority: 1 +DestUniqueid: 1724493696.10378 +DestLinkedid: 1724493695.10377 +DialStatus: RINGING +Device: PJSIP/12 +State: INUSE +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989082914912 +Priority: 1 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +13:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +13:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +Variable: BRIDGEPEER +Value: PJSIP/12-0000126e +DestChannel: PJSIP/rt_769402-0000126f +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989082914912 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493696.10378 +DestLinkedid: 1724493695.10377 +DialStatus: ANSWER +BridgeUniqueid: e92fcdb0-1252-4db9-b926-4a434ea7a01f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +13:01:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082914912 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: BRIDGEPVTCALLID +Value: bdcf6692-301f-47c6-b483-ea9c683144e7 + + +13:01:59 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x34f009f7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493719.788050 +SentRTP: 1724533552 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x82a1746f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 59588 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:02:04 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x34f009f7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493724.789266 +SentRTP: 1724573552 +SentPackets: 500 +SentOctets: 80000 +Report0SourceSSRC: 0x82a1746f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 59838 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:02:09 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x34f009f7 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493729.788038 +SentRTP: 1724613552 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x82a1746f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 60088 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:02:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000126f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082914912 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:02:14 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/12-0000126e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082914912 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: e92fcdb0-1252-4db9-b926-4a434ea7a01f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:02:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082914912 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_EXTEN +Value: + + +13:02:14 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082914912 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +13:02:14 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-0000126f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989082914912 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493696.10378 +Linkedid: 1724493695.10377 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: e92fcdb0-1252-4db9-b926-4a434ea7a01f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:02:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000126e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Source: 78162769402 +Destination: 989082914912 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000126f +LastApplication: Dial +LastData: PJSIP/+79082914912@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 38 +BillableSeconds: 19 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493695.10377 +UserField: +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10402 +Variable: MACRO_CONTEXT +Extension: s +Application: Hangup +AppData: + + +13:02:14 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-0000126e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989082914912 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493695.10377 +Linkedid: 1724493695.10377 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000227; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:02:14 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/12 +ActionID: 10403 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633319113 +Priority: 1 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493740.1 +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10-00001270 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Extension: s +Application: Set +AppData: AMPUSER=10 +Variable: DB_RESULT +Value: 10 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=10 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:02:20 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493740.10379 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633319113 +Priority: 2 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989633319113 +Application: Gosub +AppData: sub-record-check,s,1(out,989633319113,dontcare) + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493740.10379 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493740.10379 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: __CALLFILENAME +Value: out-989633319113-10-20240824-130220-1724493740.10379 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989633319113-10-20240824-130220-1724493740.10379 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989633319113-10-20240824-130220-1724493740.10379.wav + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633319113 +Priority: 7 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740. +Variable: MOHCLASS +Value: default +Extension: 989633319113 +Application: Set +AppData: MOHCLASS=default + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989633319113 +Priority: 11 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_EXTEN +Value: 989633319113 +Extension: 989633319113 +Application: Macro +AppData: dialout-trunk,6,+79633319113,,off + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) +Variable: DB_RESULT +Value: + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79633319113 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79633319113 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79633319113) + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Extension: s +Application: Dial +AppData: PJSIP/+79633319113@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79633319113^989633319113^6^1724493740^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: PROGRESSTIME +Value: + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +Variable: __REC_STATUS +Value: RECORDING + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +Variable: __DAY +Value: 24 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:02:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493740.1 +Linkedid: 1724493740.10379 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:02:20 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001271 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989633319113 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493740.10380 +DestLinkedid: 1724493740.10379 +DialString: +79633319113@rt_769402 + + +13:02:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633319113 +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +Extension: 989633319113 +Application: AppDial +AppData: (Outgoing Line) + + +13:02:20 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 28 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: RINGTIME_MS +Value: 365 +DestChannel: PJSIP/rt_769402-00001271 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989633319113 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989633319113 +DestPriority: 1 +DestUniqueid: 1724493740.10380 +DestLinkedid: 1724493740.10379 +DialStatus: RINGING +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:02:25 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-00001270 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: PROGRESSTIME_MS +Value: 4698 +DestChannel: PJSIP/rt_769402-00001271 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989633319113 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989633319113 +DestPriority: 1 +DestUniqueid: 1724493740.10380 +DestLinkedid: 1724493740.10379 +DialStatus: PROGRESS + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021485047 +Priority: 1 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493749.1 +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12-00001272 + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=12 + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: DB_RESULT +Value: 12 + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:02:29 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=12 + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493749.10381 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021485047 +Priority: 2 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989021485047 +Application: Gosub +AppData: sub-record-check,s,1(out,989021485047,dontcare) + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493749.10381 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493749.10381 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: __CALLFILENAME +Value: out-989021485047-12-20240824-130229-1724493749.10381 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989021485047-12-20240824-130229-1724493749.10381 + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989021485047-12-20240824-130229-1724493749.10381.wav + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021485047 +Priority: 7 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749. +Variable: MOHCLASS +Value: default +Extension: 989021485047 +Application: Set +AppData: MOHCLASS=default + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021485047 +Priority: 11 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_EXTEN +Value: 989021485047 +Extension: 989021485047 +Application: Macro +AppData: dialout-trunk,6,+79021485047,,off + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=12) +Variable: DB_RESULT +Value: + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79021485047 + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79021485047 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79021485047) + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Extension: s +Application: Dial +AppData: PJSIP/+79021485047@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79021485047^989021485047^6^1724493749^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: PROGRESSTIME +Value: + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +Variable: __REC_STATUS +Value: RECORDING + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +Variable: __DAY +Value: 24 + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:02:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:02:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493749.1 +Linkedid: 1724493749.10381 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:02:29 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989021485047 +Priority: 1 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001273 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989021485047 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493749.10382 +DestLinkedid: 1724493749.10381 +DialString: +79021485047@rt_769402 + + +13:02:29 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: RINGTIME_MS +Value: 300 +Device: PJSIP/12 +State: INUSE +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +DestChannel: PJSIP/rt_769402-00001273 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989021485047 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989021485047 +DestPriority: 1 +DestUniqueid: 1724493749.10382 +DestLinkedid: 1724493749.10381 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:02:30 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633319113 +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x41a54b14 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493750.500514 +SentRTP: 1724533584 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0xcd4a4ccc +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34954 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:02:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: PROGRESSTIME_MS +Value: 1544 + + +13:02:31 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-00001272 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +DestChannel: PJSIP/rt_769402-00001273 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989021485047 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989021485047 +DestPriority: 1 +DestUniqueid: 1724493749.10382 +DestLinkedid: 1724493749.10381 +DialStatus: RINGING + + +13:02:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989021485047 +Priority: 1 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +Variable: LOCAL(AR +Value: + + +13:02:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: +Device: PJSIP/rt_769402 +State: RINGINUSE + + +13:02:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +Variable: BRIDGEPEER +Value: PJSIP/12-00001272 +DestChannel: PJSIP/rt_769402-00001273 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989021485047 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493749.10382 +DestLinkedid: 1724493749.10381 +DialStatus: ANSWER +BridgeUniqueid: 0f14dc29-3893-4b2d-ade1-fdbbd6aed338 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +13:02:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: BRIDGEPVTCALLID +Value: dcf788ee-889d-4a38-af75-a593e88a047c + + +13:02:35 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633319113 +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x41a54b14 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493755.500611 +SentRTP: 1724573744 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xcd4a4ccc +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 35204 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:02:36 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5b4e00c8 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493756.095796 +SentRTP: 1724533744 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x0c75903f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 36413 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:02:38 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/rt_769402 +State: INUSE +Channel: PJSIP/rt_769402-00001271 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989633319113 +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +Variable: LOCAL(ARG5) +Value: + + +13:02:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +13:02:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +Variable: BRIDGEPEER +Value: PJSIP/10-00001270 +DestChannel: PJSIP/rt_769402-00001271 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989633319113 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493740.10380 +DestLinkedid: 1724493740.10379 +DialStatus: ANSWER +BridgeUniqueid: d462e868-5ad1-42f5-9757-a6c79f17520d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +13:02:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: BRIDGEPVTCALLID +Value: 400932cc-5e6c-46fd-9fb4-3854b23b62e8 + + +13:02:45 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x41a54b14 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493765.500509 +SentRTP: 1724653584 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0xcd4a4ccc +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 35704 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:02:46 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5b4e00c8 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493766.094831 +SentRTP: 1724613744 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x0c75903f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 36913 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001273 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:02:48 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/12-00001272 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 0f14dc29-3893-4b2d-ade1-fdbbd6aed338 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_EXTEN +Value: + + +13:02:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +13:02:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001272 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: RTPAUDIOQOS +Value: ssrc=1369913282;themssrc=3932713023;lp=0;rxjitter=0.000000;rxcount=876;txjitter=0.000875;txcount=881;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Extension: s +Application: Hangup +AppData: + + +13:02:48 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/12-00001272 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493749.10381 +Linkedid: 1724493749.10381 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000138; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Source: 78162769402 +Destination: 989021485047 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001273 +LastApplication: Dial +LastData: PJSIP/+79021485047@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 19 +BillableSeconds: 16 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493749.10381 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:02:48 + +Event: Hangup +Privilege: call,all +BridgeUniqueid: 0f14dc29-3893-4b2d-ade1-fdbbd6aed338 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-00001273 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493749.10382 +Linkedid: 1724493749.10381 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000217; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: + + +13:02:48 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/RT_769402 +ActionID: 10405 + + +13:02:50 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x41a54b14 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493770.500897 +SentRTP: 1724693584 +SentPackets: 1250 +SentOctets: 200000 +Report0SourceSSRC: 0xcd4a4ccc +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 35954 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 2 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:02:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:02:55 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/10-00001270 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: d462e868-5ad1-42f5-9757-a6c79f17520d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:02:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_EXTEN +Value: + + +13:02:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001270 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633319113 +ConnectedLineName: C +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +13:02:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.0000 +BridgeUniqueid: d462e868-5ad1-42f5-9757-a6c79f17520d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Source: 78162769402 +Destination: 989633319113 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001271 +LastApplication: Dial +LastData: PJSIP/+79633319113@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 34 +BillableSeconds: 17 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493740.10379 +UserField: + + +13:02:55 + +Event: VarSet +Privilege: call,all +Channel: PJSIP/rt_769402-00001271 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989633319113 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493740.10380 +Linkedid: 1724493740.10379 +Variable: MACRO_PRIORITY +Value: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing + + +13:02:55 + +Event: UserEvent +Privilege: +Channel: PJSIP/10-00001270 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989633319113 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493740.10379 +Linkedid: 1724493740.10379 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000160; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:02:55 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/10 +ActionID: 10407 + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-130255 +Variable: __YEAR +Value: 2024 + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493775.10383 +Linkedid: 17244937 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: 78162769402 +Application: Set +AppData: __FROM_DID=78162769402 +Variable: __FROM_DID +Value: 78162769402 + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 3 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +13:02:56 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 2 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +13:02:56 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +CommandId: 661781224 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +13:02:56 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +CommandId: 899789460 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +CommandId: 361037496 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 19 +Priority: 1 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-u +Exten: s +Priority: 3 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 7906 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: AMPUSER +Value: 79062025252 +Extension: s +Application: Set +AppData: AMPUSER=79062025252 + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +13:02:56 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Goto +AppData: 0?Set(__CIDMASQUERADING=TRUE) + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 50 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: CALLERID(name)=79062025252 +Variable: MACRO_DEPTH +Value: 1 + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:02:56 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: 194 +Application: Answer +AppData: +Device: PJSIP/rt_769402 +State: INUSE + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/rt_769402-00001274) + + +13:02:56 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: MacroExit +AppData: + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: VQ_AINFO +Value: +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: 194 +Application: Set +AppData: QRINGOPTS=R +Variable: QRINGOPTS +Value: R + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:02:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7906 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +13:02:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021485047 +Priority: 1 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493780.1 +Linkedid: 1724493780.10384 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12-00001275 + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493780.10384 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=12 + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: DB_RESULT +Value: 12 + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:03:00 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=12 + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493780.10384 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021485047 +Priority: 2 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989021485047 +Application: Gosub +AppData: sub-record-check,s,1(out,989021485047,dontcare) + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493780.10384 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493780.10384 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: __CALLFILENAME +Value: out-989021485047-12-20240824-130300-1724493780.10384 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989021485047-12-20240824-130300-1724493780.10384 + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989021485047-12-20240824-130300-1724493780.10384.wav + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021485047 +Priority: 7 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780. +Variable: MOHCLASS +Value: default +Extension: 989021485047 +Application: Set +AppData: MOHCLASS=default + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989021485047 +Priority: 11 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_EXTEN +Value: 989021485047 +Extension: 989021485047 +Application: Macro +AppData: dialout-trunk,6,+79021485047,,off + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=12) +Variable: DB_RESULT +Value: + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79021485047 + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79021485047 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79021485047) + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Extension: s +Application: Dial +AppData: PJSIP/+79021485047@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79021485047^989021485047^6^1724493780^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: PROGRESSTIME +Value: + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001276 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493780.10385 +Linkedid: 1724493780.10384 +Variable: __REC_STATUS +Value: RECORDING + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001276 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493780.10385 +Linkedid: 1724493780.10384 +Variable: __DAY +Value: 24 + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001276 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493780.10385 +Linkedid: 1724493780.10384 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:03:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001276 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493780.10385 +Linkedid: 1724493780.10384 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:03:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001276 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493780.1 +Linkedid: 1724493780.10384 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:03:00 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001276 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989021485047 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493780.10385 +DestLinkedid: 1724493780.10384 +DialString: +79021485047@rt_769402 + + +13:03:00 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 28 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Extension: 989021485047 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: INUSE +Variable: RINGTIME_MS +Value: 344 +DestChannel: PJSIP/rt_769402-00001276 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989021485047 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989021485047 +DestPriority: 1 +DestUniqueid: 1724493780.10385 +DestLinkedid: 1724493780.10384 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:03:02 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: PROGRESSTIME_MS +Value: 2230 +DestChannel: PJSIP/rt_769402-00001276 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989021485047 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989021485047 +DestPriority: 1 +DestUniqueid: 1724493780.10385 +DestLinkedid: 1724493780.10384 +DialStatus: PROGRESS + + +13:03:05 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:03:05 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493775.10 +Linkedid: 1724493775.10383 +Variable: QUEUEJOINTIME +Value: 1724493785 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493785.10386 +Linkedid: 1724493775.10383 +Class: default +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493785.10386 +Linkedid: 1724493775.10383 +Variable: __MOHCLASS +Value: + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: +Priority: 1 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: __MONTH +Value: 08 + + +13:03:05 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b06;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493785.10386 +LocalOneLinkedid: 1724493775.10383 +LocalTwoChannel: Local/13@from-queue-00000b06;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79062025252 +LocalTwoCallerIDName: 79062025252 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493785.10387 +LocalTwoLinkedid: 1724493775.10383 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000b06;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493785.10386 +DestLinkedid: 1724493775.10383 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493785.10388 +Linkedid: +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493785.10388 +Linkedid: 17 +Variable: __MOHCLASS +Value: + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: __QC_CONFIRM +Value: 0 + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: __CALLEE_ACCOUNCODE +Value: + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: __DAY +Value: 24 + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b07;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493785.10388 +LocalOneLinkedid: 1724493775.10383 +LocalTwoChannel: Local/10@from-queue-00000b07;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79062025252 +LocalTwoCallerIDName: 79062025252 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493785.10389 +LocalTwoLinkedid: 1724493775.10383 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000b07;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724493785.10388 +DestLinkedid: 1724493775.10383 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: DB_RESULT +Value: EXTENSION +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724493785.10389 +Linkedid: 172449377 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 17244 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b07;2 + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 7906 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79062025252 + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from +Variable: MACRO_DEPTH +Value: 2 + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: ARG1 +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724493785 + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-130305 + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 7906202 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEP +Value: 79062025252 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79062025252) + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79062025252-20240824-130305-1724493785.10389.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79062025252-20240824-130305-1724493785.10389.wav + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: MACRO_DEPTH +Value: 1 + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724493785. +Linkedid: 1724493775.10383 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 +Variable: DB_RESULT +Value: EXTENSION + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: MACRO_CONTEXT +Value: ext-local + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724493785.1038 +Linkedid: 1724493775.10383 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +13:03:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: CHANCONTEXT +Value: from-queue-00000b06;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b06;2 + + +13:03:05 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: CHANEXTEN=13 +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493785. +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79062025252 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_EXTEN +Value: s + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: VarS +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: DB_RESULT +Value: PJSIP/10 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 172449 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Extension: ctset +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: DB_RE +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +13:03:06 + +Event: VarSet +Privilege: dialpl +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALEDPEERNAME +Value: + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79062025252 + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exte +Exten: s +Priority: 54 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001277 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493785.10390 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001277 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493785.10390 +Linkedid: 1724493775.10383 +Variable: __FROMEXTEN +Value: 79062025252 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJS +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493785.10390 +Linkedid: 1724493775.10383 +Variable: __QC_CONFIRM +Value: 0 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001277 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493785.10390 +Linkedid: 1724493775.10383 +Variable: __MOHCLASS +Value: + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79062025252 +ConnectedLineName: 79062025252 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493785.10390 +Linkedid: 1724493775.10383 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724493785.1 +Linkedid: 1724493775.10383 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: __FROMEXTEN=79062025252 +Variable: MACRO_DEPTH +Value: 1 + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: rec +Priority: 11 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: __CALLFILENAME +Value: external-13-79062025252-20240824-130305-1724493785.10387 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79062025252-20240824-130305-1724493785.10387 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.1038 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000b06;2 +Variable: MACRO_DEPTH +Value: 1 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: ARG3 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: EXTH +Value: 2 +Extension: s +Application: Set +AppData: EXTHASCW= + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: DB_RESULT +Value: 13 +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_ +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724493785.10387 +Linkedid: 17244 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724493785.10387 +Linkedid: 172449377 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724493785 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: MACRO_DEPTH +Value: 2 + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: PROGRESSTIME +Value: + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: __REC_POLICY_MODE +Value: YES + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: __RINGTIMER +Value: + + +13:03:06 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +13:03:06 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062025252 +ConnectedLineName: 79062025252 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +13:03:06 + +Event: DialBegin +Privilege: call,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/10-00001277 + + +13:03:06 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 7906202525 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +DestChannel: PJSIP/13-00001278 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062025252 +DestConnectedLineName: 79062025252 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493785.10391 +DestLinkedid: 1724493775.10383 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +DialString: 13/sip + + +13:03:06 + +Event: DeviceStateChange +Privilege: call,all +Device: Local/13@from-queue +State: INUSE + + +13:03:08 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001276 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989021485047 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989021485047 +Priority: 1 +Uniqueid: 1724493780.10385 +Linkedid: 1724493780.10384 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x4fd11ed1 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493788.029659 +SentRTP: 1724533616 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x09fb8e71 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 43948 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:03:08 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 2674 +DestChannel: Local/10@from-queue-00000b07;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79062025252 +DestConnectedLineName: 79062025252 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493785.10388 +DestLinkedid: +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:03:08 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 3225 +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +DestChannel: Local/13@from-queue-00000b06;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062025252 +DestConnectedLineName: 79062025252 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493785.10386 +DestLinkedid: 1724493775.10383 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:03:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001875;avgrxjitter=000.001554;stdevrxjitter=000.000272;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +13:03:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: ARG1 +Value: +Cause: 127 +DestChannel: PJSIP/rt_769402-00001276 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989021485047 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989021485047 +DestPriority: 1 +DestUniqueid: 1724493780.10385 +DestLinkedid: 1724493780.10384 +DialStatus: CANCEL + + +13:03:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: MACRO_CONTEXT +Value: from-internal +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +13:03:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989021485047 +Priority: 1 +Uniqueid: 1724493780.10385 +Linkedid: 1724493780.10384 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000268; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +13:03:09 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/12-00001275 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/rt_769402 +State: INUSE +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Source: 78162769402 +Destination: 9 + + +13:03:09 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/RT_769402 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989021485047 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724493780.10384 +Linkedid: 1724493780.10384 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 127 +Cause-txt: Interworking, unspecified +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10408 + + +13:03:09 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062025252 +ConnectedLineName: 79062025252 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: DIALEDPEERNUMBER +Value: 13/sip +Extension: s +Application: Macro +AppData: auto-blkvm + + +13:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062025252 +ConnectedLineName: 79062025252 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 1 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/13 +State: INUSE +Extension: s +Application: ExecIf +AppData: 1?Set(CDR(recordingfile)=external-13-79062025252-20240824-130305-1724493785.10387.wav) +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 424 +LastCall: 1724493158 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062025252 +ConnectedLineName: 79062025252 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal + + +13:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062025252 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +13:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062025252 +ConnectedLineName: 79062025252 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +13:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062025252 +ConnectedLineName: 79062025252 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +13:03:21 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +DestChannel: Local/10@from-queue-00000b07;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79062025252 +DestConnectedLineName: 79062025252 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493785.10388 +DestLinkedid: 1724493775.10383 +DialStatus: CANCEL +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:03:21 + +Event: DialEnd +Privilege: call,all +Channel: Local/10@fr +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: Local/13@from-queue-00000b06;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79062025252 +DestConnectedLineName: 79062025252 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724493785.10386 +DestLinkedid: 1724493775.10383 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 16 +RingTime: 15 +BridgeUniqueid: 676b34fa-3376-4a1e-a460-5c1adf76fb5b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_EXTEN +Value: 10 +Source: 79062025252 +Destination: 10 +DestinationContext: ext-local +CallerID: "79062025252" <79062025252> +DestinationChannel: PJSIP/10-00001277 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 15 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724493785.10389 +UserField: + + +13:03:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_CONTEXT +Value: + + +13:03:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493 +Linkedid: 1724493775.10383 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +13:03:21 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000b07;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79062025 +CallerIDName: 79062025252 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493785.10389 +Linkedid: 1724493775.10383 +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/10 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: + + +13:03:21 + +Event: BridgeEnter +Privilege: call,all +BridgeUniqueid: 676b34fa-3376-4a1e-a460-5c1adf76fb5b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000b06;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPVTCALLID +Value: bc748eac-2a0b-4e91-afe8-2c42558ae18a +Device: Local/10@from-queue +State: NOT_INUSE + + +13:03:21 + +Event: QueueMemberStatus +Privilege: agent,all +BridgeUniqueid: 676b34fa-3376-4a1e-a460-5c1adf76fb5b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 53 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10412 +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:03:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:03:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:03:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-130325 +Variable: __YEAR +Value: 2024 + + +13:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:03:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +13:03:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493805.10392 +Linkedid: 17244938 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: 78162769402 +Application: Set +AppData: __FROM_DID=78162769402 +Variable: __FROM_DID +Value: 78162769402 + + +13:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 3 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +13:03:25 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +13:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 2 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +13:03:25 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +CommandId: 813981327 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +13:03:25 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +CommandId: 626590443 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +13:03:25 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +CommandId: 1945464764 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +13:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +13:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724493805.10392 + + +13:03:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=rt_769402-00001279 + + +13:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=rt_769402-00001279 + + +13:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +13:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +13:03:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +13:03:25 + +Event: Va +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +13:03:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724493805.10392 +Linkedid: 1724 +Extension: s +Application: Set +AppData: CDR(cnam)=79021485047 +Variable: MACRO_DEPTH +Value: 1 + + +13:03:25 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 2 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: MACRO_PRIORITY +Value: +Extension: 194 +Application: Answer +AppData: + + +13:03:26 + +Event: Var +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/rt_769402-00001279) + + +13:03:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: MacroExit +AppData: + + +13:03:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: __QCONTEXT +Value: 0 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +13:03:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 13 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: VQ_AINFO +Value: +Extension: 194 +Application: Set +AppData: __RVOL_MODE=dontcare + + +13:03:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: 194 +Application: Set +AppData: QRINGOPTS=R +Variable: QRINGOPTS +Value: R + + +13:03:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: QGOSUB +Value: +Extension: 194 +Application: Set +AppData: QGOSUB= + + +13:03:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: VQ_RULE +Value: +Extension: 194 +Application: Set +AppData: VQ_RULE= + + +13:03:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-re +Exten: s +Priority: 1 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: 11?initialized + + +13:03:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARG1) +Value: dontcare + + +13:03:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:03:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 33 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: 194 +Application: Set +AppData: __SIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +13:03:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +13:03:31 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000242; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 + + +13:03:31 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001279 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +13:03:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: RTPAUDIOQOS +Value: ssrc=1094409993;themssrc=3509415908;lp=0;rxjitter=0.000000;rxcount=275;txjitter=0.000625;txcount=278;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Extension: s +Application: Hangup +AppData: + + +13:03:31 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/RT_769402 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021485047 +CallerIDName: 79021485047 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493805.10392 +Linkedid: 1724493805.10392 +Variable: RTPAUDIOQOSMES +Value: 1 +Source: 79021485047 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79021485047" <79021485047> +DestinationChannel: +LastApplication: Playback +LastData: custom/Privet_23_08, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 6 +BillableSeconds: 6 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493805.10392 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10413 + + +13:03:59 + +Event: Hold +Privilege: call,all +Channel: PJSIP/13-00001278 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79062025252 +ConnectedLineName: 79062025252 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10393 +Linkedid: 1724493775.10383 +Variable: TRANSFERERNAME +Value: PJSIP/13-00001278 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10393 +Linkedid: 1724493775.10383 +Variable: __REC_POLICY_MODE +Value: YES + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10393 +Linkedid: 1724493775.10383 +Variable: __CALLEE_ACCOUNCODE +Value: + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10393 +Linkedid: 1724493775.10383 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: __KEEPCID +Value: TRUE +BridgeUniqueid: 8d8acc4c-5059-4768-b026-454f8337a219 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-inter +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: __YEAR +Value: 2024 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: __SIGNORE +Value: TRUE + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.1 +Linkedid: 1724493775.10383 +Variable: __MOHCLASS +Value: + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MA +Value: 1 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/60@from-internal-xfer-00000b08;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-internal-xfer +LocalOneExten: 60 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493842.10393 +LocalOneLinkedid: 1724493775.10383 +LocalTwoChannel: Local/60@from-internal-xfer-00000b08;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 13 +LocalTwoCallerIDName: Регистратура_2 +LocalTwoConnectedLineNum: +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-internal-xfer +LocalTwoExten: 60 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724493842.10394 +LocalTwoLinkedid: 1724493775.10383 +LocalOptimization: Yes +Extension: 60 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: CHANCONTEXT +Value: from-internal-xfer-00000b08;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-internal-xfer-00000b08;2 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: CHANEXTEN=60 +Variable: CHANEXTEN +Value: 60 + + +13:04:02 + +Event: VarSet +Privilege: +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=60@from +Variable: MACRO_DEPTH +Value: 1 + + +13:04:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +13:04:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 21 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DIAL_OPTIONS=HhTtr + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user- +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10393 +Linkedid: 1724493775.10383 +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) +Variable: DB_RESULT +Value: ru + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +13:04:02 + +Event: VarSet +Privilege: dialplan +Channel: Local/60@from-internal-xfer-00000b08;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10393 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: CDR(cnum)=13 +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 8d8acc4c-5059-4768-b026-454f8337a219 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:04:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: s +Priority: 54 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: REC_POLICY_MODE_SAVE +Value: YES +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE=YES + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 7 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: RECMODE +Value: +Extension: out +Application: Gosub +AppData: recordcheck,1(dontcare,out,60) + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: ARG3 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:04:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 3 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: GOSUB_RETVAL +Value: +Extension: 60 +Application: ExecIf +AppData: 0 ?Set(CDR(accountcode)=) + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 8 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MOHCLASS +Value: default +Extension: 60 +Application: Set +AppData: _CALLERIDNAMEINTERNAL=Регистратура_2 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 12 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Extension: 60 +Application: Macro +AppData: dialout-trunk,5,60,,off +Variable: MACRO_EXTEN +Value: 60 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Ре +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: DIAL_TRUNK +Value: 5 +Extension: s +Application: Set +AppData: DIAL_TRUNK=5 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) +Variable: DB_RESULT +Value: 13 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724493842.10 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?nomax + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 16 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Extension: s +Application: Set +AppData: custom=IAX2/Rahmaninovo +Variable: custom +Value: IAX2/Rahmaninovo + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Extension: s +Application: Macro +AppData: dialout-trunk-predial-hook, +Variable: MACRO_EXTEN +Value: s + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистрат +ConnectedLineNum: 60 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=60) + + +13:04:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 25 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID +Variable: MACRO_DEPTH +Value: 1 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: DIALEDPEERNUMBER +Value: +Extension: s +Application: Dial +AppData: IAX2/Rahmaninovo/60,300,Tb(func-apply-sipheaders^s^1,(5))U(sub-send-obroute-email^60^60^5^^Регистратура_2^13) + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-2213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: default +Exten: s +Priority: 1 +Uniqueid: 1724493842.10395 +Linkedid: 1724493775.10383 +Variable: PROGRESSTIME_MS +Value: + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-2213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 1 +Uniqueid: 1724493842.10395 +Linkedid: 1724493775.10383 +Variable: __KEEPCID +Value: TRU + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-2213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 1 +Uniqueid: 1724493842.10395 +Linkedid: 1724493775.10383 +Variable: __MONTH +Value: 08 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-2213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 1 +Uniqueid: 1724493842.10395 +Linkedid: 1724493775.10383 +Variable: __QCONTEXT +Value: 0 + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-2213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 60 +CallerIDName: CID +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: en +AccountCode: +Context: +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10395 +Linkedid: 1724493775.10383 +Variable: LOCAL(ARG1) +Value: 5 +Extension: 60 +Application: AppDial +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-2213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 60 +CallerIDName: CID +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: en +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493842.10395 +Linkedid: 1724493775.10383 +Extension: s +Application: While +AppData: 1 +Variable: func-apply-sipheaders_s_4 +Value: 0 + + +13:04:02 + +Event: Newexten +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-2213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 60 +CallerIDName: CID +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: en +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 11 +Uniqueid: 1724493842.10395 +Linkedid: 1724493775.10383 +Extension: s +Application: ExecIf +AppData: 0?Set(PJSIP_HEADER(add,Alert-Info)=unset) +Variable: sipheader +Value: unset + + +13:04:02 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-2213 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 60 +CallerIDName: CID +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: en +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724493842.10395 +Linkedid: 1724493775.10383 +Variable: ARG1 +Value: +Extension: s +Application: Return +AppData: + + +13:04:02 + +Event: DialBegin +Privilege: call,all +BridgeUniqueid: 8d8acc4c-5059-4768-b026-454f8337a219 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493842.10395 +Linkedid: 1724493775.10383 +Variable: BRIDGEPEER +Value: Local/60@from-internal-xfer-00000b08;1 +Extension: 60 +Application: AppDial +AppData: (Outgoing Line) + + +13:04:02 + +Event: DialState +Privilege: call,all +Device: Local/60@from-internal-xfer +State: INUSE +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: RINGTIME_MS +Value: 73 +DestChannel: IAX2/Rahmaninovo-2213 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 60 +DestCallerIDName: CID +DestConnectedLineNum: 13 +DestConnectedLineName: Регистратура_2 +DestLanguage: en +DestAccountCode: +DestContext: from-trunk +DestExten: 60 +DestPriority: 1 +DestUniqueid: 1724493842.10395 +DestLinkedid: 1724493775.10383 +DialStatus: RINGING + + +13:04:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: DIALEDPEERNUMBER +Value: Rahmaninovo/60 + + +13:04:11 + +Event: VarSet +Privilege: dialplan,all +Channel: IAX2/Rahmaninovo-2213 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 60 +CallerIDName: CID +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: en +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493842.10395 +Linkedid: 1724493775.10383 +Variable: LOCAL(ARGC) +Value: 6 +Extension: s +Application: Return +AppData: + + +13:04:11 + +Event: Newstate +Privilege: call,all +Channel: Local/60@from-internal-xfer-00000b08;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: GOSUB_RETVAL +Value: +Device: IAX2/Rahmaninovo +State: INUSE +DestChannel: IAX2/Rahmaninovo-2213 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 60 +DestCallerIDName: CID +DestConnectedLineNum: 13 +DestConnectedLineName: Регистратура_2 +DestLanguage: en +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493842.10395 +DestLinkedid: 1724493775.10383 +DialStatus: ANSWER + + +13:04:11 + +Event: VarSet +Privilege: dialplan,all +DestChannel: Local/60@from-internal-xfer-00000b08;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: +DestCallerIDName: +DestConnectedLineNum: 13 +DestConnectedLineName: Регистратура_2 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal-xfer +DestExten: 60 +DestPriority: 1 +DestUniqueid: 1724493842.10393 +DestLinkedid: 1724493775.10383 +DialStatus: ANSWER +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: BRIDGEPEER +Value: Local/60@from-internal-xfer-00000b08;1 +BridgeUniqueid: c5f753c4-662b-4295-a738-15b8d6d2e197 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) +Device: Local/60@from-internal-xfer +State: INUSE + + +13:04:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: BRIDGEPEER +Value: IAX2/Rahmaninovo-2213 + + +13:04:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:04:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001278 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724493785.10391 +Linkedid: 1724493775.10383 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001500;avgrxjitter=000.001067;stdevrxjitter=000.000183;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +BridgeUniqueid: 8d8acc4c-5059-4768-b026-454f8337a219 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:04:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000183; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +ToBridgeUniqueid: ed2931d3-bc27-491c-a474-2845893fcca0 +ToBridgeType: basic +ToBridgeTechnology: simple_bridge +ToBridgeCreator: +ToBridgeName: +ToBridgeNumChannels: 1 +ToBridgeVideoSourceMode: none +FromBridgeUniqueid: 8d8acc4c-5059-4768-b026-454f8337a219 +FromBridgeType: basic +FromBridgeTechnology: simple_bridge +FromBridgeCreator: +FromBridgeName: +FromBridgeNumChannels: 1 +FromBridgeVideoSourceMode: none +BridgeUniqueid: ed2931d3-bc27-491c-a474-2845893fcca0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +13:04:21 + +Event: BridgeDestroy +Privilege: +Channel: Local/60@from-internal-xfer-00000b08;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10393 +Linkedid: 1724493775.10383 +Variable: BRIDGEPVTCALLID +Value: +Result: Success +OrigTransfererChannel: PJSIP/13-00001278 +OrigTransfererChannelState: 6 +OrigTransfererChannelStateDesc: Up +OrigTransfererCallerIDNum: 13 +OrigTransfererCallerIDName: Регистратура_2 +OrigTransfererConnectedLineNum: +OrigTransfererConnectedLineName: +OrigTransfererLanguage: ru +OrigTransfererAccountCode: +OrigTransfererContext: macro-dial-one +OrigTransfererExten: s +OrigTransfererPriority: 1 +OrigTransfererUniqueid: 1724493785.10391 +OrigTransfererLinkedid: 1724493775.10383 +OrigBridgeUniqueid: ed2931d3-bc27-491c-a474-2845893fcca0 +OrigBridgeType: basic +OrigBridgeTechnology: simple_bridge +OrigBridgeCreator: +OrigBridgeName: +OrigBridgeNumChannels: 2 +OrigBridgeVideoSourceMode: none +SecondTransfererChannel: PJSIP/13-00001278 +SecondTransfererChannelState: 6 +SecondTransfererChannelStateDesc: Up +SecondTransfererCallerIDNum: 13 +SecondTransfererCallerIDName: Регистратура_2 +SecondTransfererConnectedLineNum: +SecondTransfererConnectedLineName: +SecondTransfererLanguage: ru +SecondTransfererAccountCode: +SecondTransfererContext: macro-dial-one +SecondTransfererExten: s +SecondTransfererPriority: 1 +SecondTransfererUniqueid: 1724493785.10391 +SecondTransfererLinkedid: 1724493775.10383 +SecondBridgeUniqueid: 8d8acc4c-5059-4768-b026-454f8337a219 +SecondBridgeType: basic +SecondBridgeTechnology: simple_bridge +SecondBridgeCreator: +SecondBridgeName: +SecondBridgeNumChannels: 0 +SecondBridgeVideoSourceMode: none +TransfereeChannel: Local/13@from-queue-00000b06;2 +TransfereeChannelState: 6 +TransfereeChannelStateDesc: Up +TransfereeCallerIDNum: 79062025252 +TransfereeCallerIDName: 79062025252 +TransfereeConnectedLineNum: 13 +TransfereeConnectedLineName: Регистратура_2 +TransfereeLanguage: ru +TransfereeAccountCode: +TransfereeContext: macro-dial-one +TransfereeExten: s +TransfereePriority: 55 +TransfereeUniqueid: 1724493785.10387 +TransfereeLinkedid: 1724493775.10383 +TransferTargetChannel: Local/60@from-internal-xfer-00000b08;1 +TransferTargetChannelState: 6 +TransferTargetChannelStateDesc: Up +TransferTargetCallerIDNum: +TransferTargetCallerIDName: +TransferTargetConnectedLineNum: 13 +TransferTargetConnectedLineName: Регистратура_2 +TransferTargetLanguage: ru +TransferTargetAccountCode: +TransferTargetContext: from-internal-xfer +TransferTargetExten: 60 +TransferTargetPriority: 1 +TransferTargetUniqueid: 1724493842.10393 +TransferTargetLinkedid: 1724493775.10383 +IsExternal: No +DestType: Bridge +DestBridgeUniqueid: ed2931d3-bc27-491c-a474-2845893fcca0 + + +13:04:21 + +Event: QueueMemberStatus +Privilege: agent,all +AccountCode: +Source: 13 +Destination: s +DestinationContext: macro-dial-one +CallerID: "Регистратура_2" <13> +Channel: PJSIP/rt_769402-00001274 +DestinationChannel: Local/60@from-internal-xfer-00000b08;1 +LastApplication: ExecIf +LastData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 19 +BillableSeconds: 19 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493785.10391 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +Context: ext-local +Exten: 13 +Priority: 53 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10414 +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:04:21 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: BRIDGEPEER +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +BridgeUniqueid: c5f753c4-662b-4295-a738-15b8d6d2e197 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +SwapUniqueid: 1724493842.10394 + + +13:04:21 + +Event: Cdr +Privilege: cdr,all +Channel: Local/60@from-internal-xfer-00000b08;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: +ConnectedLineNum: 79062025252 +ConnectedLineName: 79062025252 +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: 60 +Priority: 1 +Uniqueid: 1724493842.10393 +Linkedid: 1724493775.10383 +Variable: BRIDGEPEER +Value: +LocalOneChannel: Local/60@from-internal-xfer-00000b08;1 +LocalOneChannelState: 6 +LocalOneChannelStateDesc: Up +LocalOneCallerIDNum: +LocalOneCallerIDName: +LocalOneConnectedLineNum: 79062025252 +LocalOneConnectedLineName: 79062025252 +LocalOneLanguage: ru +LocalOneAccountCode: +LocalOneContext: from-internal-xfer +LocalOneExten: 60 +LocalOnePriority: 1 +LocalOneUniqueid: 1724493842.10393 +LocalOneLinkedid: 1724493775.10383 +LocalTwoChannel: Local/60@from-internal-xfer-00000b08;2 +LocalTwoChannelState: 6 +LocalTwoChannelStateDesc: Up +LocalTwoCallerIDNum: 79062025252 +LocalTwoCallerIDName: 79062025252 +LocalTwoConnectedLineNum: 60 +LocalTwoConnectedLineName: CID +LocalTwoLanguage: ru +LocalTwoAccountCode: +LocalTwoContext: macro-dialout-trunk +LocalTwoExten: s +LocalTwoPriority: 28 +LocalTwoUniqueid: 1724493842.10394 +LocalTwoLinkedid: 1724493775.10383 +Success: No +Id: 23 +BridgeUniqueid: ed2931d3-bc27-491c-a474-2845893fcca0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/60@from-internal-xfer +State: NOT_INUSE +Source: +Destination: 60 +DestinationContext: from-internal-xfer +CallerID: "" <> +DestinationChannel: +LastApplication: +LastData: +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 0 +BillableSeconds: 0 +Disposition: ANSWERED +AMAFlags: DOCUMENTATIO + + +13:04:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_EXTEN +Value: + + +13:04:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/60@from-internal-xfer-00000b08;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal-xfer +Exten: h +Priority: 1 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +13:04:21 + +Event: Hangup +Privilege: call,all +Channel: L +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: 60 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493842.10394 +Linkedid: 1724493775.10383 +Variable: MACRO_PRIORITY +Value: +BridgeUniqueid: ed2931d3-bc27-491c-a474-2845893fcca0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10415 +Extension: s +Application: Hangup +AppData: + + +13:04:21 + +Event: UserEvent +Privilege: user,all +Device: Local/60@from-internal-xfer +State: NOT_INUSE +AccountCode: +Source: 79062025252 +Destination: 60 +DestinationContext: from-internal-xfer +CallerID: "79062025252" <79062025252> +Channel: LOCAL/60@FROM-INTERNAL-XFER +DestinationChannel: IAX2/Rahmaninovo-2213 +LastApplication: Dial +LastData: IAX2/Rahmaninovo/60,300,Tb(func-apply-sipheaders^s^1,(5))U(sub-send-obroute-ema +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 19 +BillableSeconds: 10 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493842.10394 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10416 + + +13:04:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989517262142 +Priority: 1 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:04:29 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:04:29 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493869.1 +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12-0000127a + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=12 + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: DB_RESULT +Value: 12 + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:04:30 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=12 + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493869.10396 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989517262142 +Priority: 2 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989517262142 +Application: Gosub +AppData: sub-record-check,s,1(out,989517262142,dontcare) + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493869.10396 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493869.10396 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: __CALLFILENAME +Value: out-989517262142-12-20240824-130429-1724493869.10396 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989517262142-12-20240824-130429-1724493869.10396 + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989517262142-12-20240824-130429-1724493869.10396.wav + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989517262142 +Priority: 7 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869. +Variable: MOHCLASS +Value: default +Extension: 989517262142 +Application: Set +AppData: MOHCLASS=default + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989517262142 +Priority: 11 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_EXTEN +Value: 989517262142 +Extension: 989517262142 +Application: Macro +AppData: dialout-trunk,6,+79517262142,,off + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=12) +Variable: DB_RESULT +Value: + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79517262142 + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79517262142 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79517262142) + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Extension: s +Application: Dial +AppData: PJSIP/+79517262142@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79517262142^989517262142^6^1724493869^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: PROGRESSTIME +Value: + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +Variable: __REC_STATUS +Value: RECORDING + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +Variable: __DAY +Value: 24 + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:04:30 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:04:30 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493870.1 +Linkedid: 1724493869.10396 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:04:30 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000127b +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989517262142 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493870.10397 +DestLinkedid: 1724493869.10396 +DialString: +79517262142@rt_769402 + + +13:04:30 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-0000127a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Extension: 989517262142 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: INUSE +Variable: RINGTIME_MS +Value: 376 +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +DestChannel: PJSIP/rt_769402-0000127b +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989517262142 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989517262142 +DestPriority: 1 +DestUniqueid: 1724493870.10397 +DestLinkedid: 1724493869.10396 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:04:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989517262142 +Priority: 1 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +Variable: LOCAL(ARG3) +Value: 6 +Device: PJSIP/rt_769402 +State: INUSE + + +13:04:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +Variable: ARG6 +Value: +Extension: s +Application: Return +AppData: + + +13:04:43 + +Event: BridgeEnter +Privilege: cal +Channel: PJSIP/rt_769402-0000127b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-0000127b +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989517262142 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724493870.10397 +DestLinkedid: 1724493869.10396 +DialStatus: ANSWER +BridgeUniqueid: d611ac22-53b8-4e54-bfda-4ff74cc99f00 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +13:04:43 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: BRIDGEPVTCALLID +Value: 19cc11cc-bc21-46c1-990d-98e3cba8a74e + + +13:04:48 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x177b1add +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493888.294239 +SentRTP: 1724533720 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x9ae442cf +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 49012 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:04:53 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x177b1add +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493893.293825 +SentRTP: 1724573880 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x9ae442cf +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 49262 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 2 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:04:58 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x177b1add +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493898.294250 +SentRTP: 1724613720 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x9ae442cf +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 49512 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:04:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: +ConnectedLineNum: 989517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:04:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +Variable: BRIDGEPEER +Value: +Source: 78162769402 +Destination: 989517262142 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000127b +LastApplication: Dial +LastData: PJSIP/+79517262142@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 29 +BillableSeconds: 16 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493869.10396 +UserField: +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +13:04:59 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: d611ac22-53b8-4e54-bfda-4ff74cc99f00 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/12-0000127a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: ARG1 +Value: + + +13:04:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989517262142 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724493870.10397 +Linkedid: 1724493869.10396 +Variable: RTPAUDIOQOS +Value: ssrc=393943773;themssrc=2598650575;lp=0;rxjitter=0.000000;rxcount=822;txjitter=0.000750;txcount=817;rlp=0;rtt=0.000000;rxme +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +13:04:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_DEPTH +Value: 1 + + +13:04:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127a +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangup +Exten: s +Priority: 4 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: Hangup +AppData: + + +13:04:59 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/RT_769 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989517262142 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493869.10396 +Linkedid: 1724493869.10396 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +BridgeUniqueid: d611ac22-53b8-4e54-bfda-4ff74cc99f00 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory + + +13:04:59 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/12 +ActionID: 10418 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524859920 +Priority: 1 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724493946.1 +Linkedid: 1724493946.10398 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12-0000127c + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724493946.10398 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=12 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: DB_RESULT +Value: 12 + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:05:46 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=12 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724493946.10398 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524859920 +Priority: 2 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989524859920 +Application: Gosub +AppData: sub-record-check,s,1(out,989524859920,dontcare) + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724493946.10398 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724493946.10398 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: __CALLFILENAME +Value: out-989524859920-12-20240824-130546-1724493946.10398 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989524859920-12-20240824-130546-1724493946.10398 + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989524859920-12-20240824-130546-1724493946.10398.wav + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524859920 +Priority: 7 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946. +Variable: MOHCLASS +Value: default +Extension: 989524859920 +Application: Set +AppData: MOHCLASS=default + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524859920 +Priority: 11 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_EXTEN +Value: 989524859920 +Extension: 989524859920 +Application: Macro +AppData: dialout-trunk,6,+79524859920,,off + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=12) +Variable: DB_RESULT +Value: + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79524859920 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79524859920 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79524859920) + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524859920 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524859920 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Extension: s +Application: Dial +AppData: PJSIP/+79524859920@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79524859920^989524859920^6^1724493946^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524859920 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: PROGRESSTIME +Value: + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +Variable: __REC_STATUS +Value: RECORDING + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +Variable: __DAY +Value: 24 + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:05:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:05:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724493946.1 +Linkedid: 1724493946.10398 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:05:46 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524859920 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000127d +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989524859920 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724493946.10399 +DestLinkedid: 1724493946.10398 +DialString: +79524859920@rt_769402 + + +13:05:46 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524859920 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Extension: 989524859920 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: INUSE +Variable: RINGTIME_MS +Value: 330 +DestChannel: PJSIP/rt_769402-0000127d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989524859920 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989524859920 +DestPriority: 1 +DestUniqueid: 1724493946.10399 +DestLinkedid: 1724493946.10398 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:05:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524859920 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: PROGRESSTIME_MS +Value: 2608 + + +13:05:54 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524859920 +Priority: 1 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7065b37b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493954.047645 +SentRTP: 1724533944 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0xae8eea68 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 48171 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 2 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:06:04 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524859920 +Priority: 1 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7065b37b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493964.048504 +SentRTP: 1724613944 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0xae8eea68 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 48671 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:06:09 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524859920 +Priority: 1 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7065b37b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493969.047468 +SentRTP: 1724653944 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0xae8eea68 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 48921 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:06:19 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524859920 +Priority: 1 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7065b37b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493979.047355 +SentRTP: 1724733944 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0xae8eea68 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 49421 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:06:29 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524859920 +Priority: 1 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7065b37b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493989.047737 +SentRTP: 1724813944 +SentPackets: 2001 +SentOctets: 320160 +Report0SourceSSRC: 0xae8eea68 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 49921 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:06:34 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524859920 +Priority: 1 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7065b37b +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724493994.047934 +SentRTP: 1724853944 +SentPackets: 2251 +SentOctets: 360160 +Report0SourceSSRC: 0xae8eea68 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 50171 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:06:41 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524859920 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000186; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 127 + + +13:06:41 + +Event: SoftHangupRequest +Privilege: call,all +Channel: PJSIP/12-0000127c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524859920 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: MACRO_PRIORITY +Value: + + +13:06:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000127d +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 781 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +13:06:41 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/12-0000127c +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524859920 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724493946.10399 +Linkedid: 1724493946.10398 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000809; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/rt_769402 +State: INUSE +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Source: 78162769402 +Destination: 989524859920 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000127d +LastApplication: Dial +LastData: PJSIP/+79524859920@rt_769402,300,Tb( + + +13:06:41 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: minrxjitter=000.000125;maxrxjitter=000.002125;avgrxjitter=000.001181;stdevrxjitter=000.000186;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Family: refreshcallhistory +Channel: PJSIP/12-0000127c +ActionID: 10419 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524859920 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724493946.10398 +Linkedid: 1724493946.10398 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10420 + + +13:06:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:06:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724494012.10400 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:06:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724494012. +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-130652 +Variable: __YEAR +Value: 2024 + + +13:06:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:06:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +13:06:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:06:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +13:06:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +13:06:53 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE +Device: PJSIP/Megafon_3 +State: INUSE + + +13:06:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +13:06:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 21 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(name-pres)=allowed_not_screened + + +13:06:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: 2 +Application: AGI +AppData: agi + + +13:06:54 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +CommandId: 2105354909 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +13:06:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +CommandId: 1378415518 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +13:06:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724494012.104 +Linkedid: 1724494012.10400 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +13:06:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724494012.10 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +13:06:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: AMPUSER +Value: 79210373536 +Extension: s +Application: Set +AppData: AMPUSER=79210373536 + + +13:06:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +13:06:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 792 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +13:06:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +13:06:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +13:06:54 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +13:06:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +13:06:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +13:06:54 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +13:06:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +13:06:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 792103 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +13:06:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +13:06:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +13:06:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +13:06:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +13:06:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:06:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:06:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +13:06:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 44 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Extension: 194 +Application: Set +AppData: VQ_AANNOUNCE= +Variable: VQ_AANNOUNCE +Value: + + +13:07:03 + +Event: Newext +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 50 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: VQ_MAXWAIT +Value: +Extension: 194 +Application: Set +AppData: VQ_MAXWAIT= + + +13:07:03 + +Event: NewCaller +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494023.10401 +Linkedid: 1724494012.10400 +Variable: QUEUEJOINTIME +Value: 1724494023 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494023.10401 +Linkedid: 1724494012.10400 +Variable: __FROMQUEUEEXTEN +Value: 79210373536 + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494023.10401 +Linkedid: 1724494012.10400 +Variable: __TIMESTR +Value: 20240824-130652 + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: __CWIGNORE +Value: TRUE + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: __REC_STATUS +Value: INITIALIZED + + +13:07:03 + +Event: Newchannel +Privilege: call,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queu +Exten: 13 +Priority: 1 +Uniqueid: 1724494023.10403 +Linkedid: 1724494012.10400 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b09;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724494023.10401 +LocalOneLinkedid: 1724494012.10400 +LocalTwoChannel: Local/12@from-queue-00000b09;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210373536 +LocalTwoCallerIDName: 79210373536 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724494023.10402 +LocalTwoLinkedid: 1724494012.10400 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b09;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724494023.10401 +DestLinkedid: 1724494012.10400 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494023.10403 +Linkedid: 172449401 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494023.10403 +Linkedid: 1724494012.104 +Variable: __FROM_DID +Value: 79217365096 + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: __SIGNORE +Value: TRUE + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: __DAY +Value: 24 + + +13:07:03 + +Event: Newchannel +Privilege: call,all +Channel: Local/10@from-queue-00000b0b;1 +ChannelState: 0 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b0a;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724494023.10403 +LocalOneLinkedid: 1724494012.10400 +LocalTwoChannel: Local/13@from-queue-00000b0a;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210373536 +LocalTwoCallerIDName: 79210373536 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724494023.10404 +LocalTwoLinkedid: 1724494012.10400 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000b0a;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724494023.10403 +DestLinkedid: 1724494012.10400 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494023.10405 +Linkedid: 1724494012.10400 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494023.10405 +Linkedid: 1724494012.10400 +Extension: 13 +Application: Set +AppData: __FROMQ=true +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: __TIMESTR +Value: 20240824-130652 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-q +Exten: 10 +Priority: 1 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: __NODEST +Value: 194 +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: __MON_FMT +Value: wav + + +13:07:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +13:07:03 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b0b;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724494023.10405 +LocalOneLinkedid: 1724494012.10400 +LocalTwoChannel: Local/10@from-queue-00000b0b;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79210373536 +LocalTwoCallerIDName: 79210373536 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724494023.10406 + + +13:07:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724494012.10400 +DestChannel: Local/10@from-queue-00000b0b;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724494023.10405 +DestLinkedid: 1724494012.10400 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 10 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true + + +13:07:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +13:07:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +13:07:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: CHANEXTEN=1 +Variable: ARG2 +Value: 10 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Se +AppData: user-callerid, + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: +Priority: 1 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000b0a;2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724494023 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79210373536 + + +13:07:04 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000b0a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724494023.10403 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:07:04 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724494 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 17244 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: recordcheck +Application: Goto +AppData: yes +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1 +Linkedid: 1724494012.10400 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79210373536-20240824-130703-1724494023.10404 +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000b0a;2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: dstring +Application: Set +AppData: DEVICES=13 +Variable: DEVICES +Value: 13 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 792 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.104 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING= + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +13:07:04 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/13-0000127f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: PROGRESSTIME_MS +Value: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000127f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494023.10407 +Linkedid: 1724494012.10 +Variable: __MON_FMT +Value: wav + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000127f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494023.10407 +Linkedid: 1724494012.10400 +Variable: __FROMQ +Value: true + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: __FROMQ +Value: true +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000b0b;2 +Variable: HOTDESCKCHAN +Value: 10@from-queue-00000b0b;2 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79210373536 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 172449402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724494023 +Linkedid: 1724494012.10400 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79210373536-20240824-130703-1724494023.10406 +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000b0b;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000b0b;2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG3 +Value: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-on +Exten: s +Priority: 4 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: __RINGTIMER +Value: 60 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724494023.10402 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000b09;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000b09;2 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10 +Extension: s +Application: Set +AppData: AMPUSER=79210373536 +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724494023.10402 +Linkedid: 172449 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: +Exten: 194 +Priority: 1 +Uniqueid: 1724494023.10403 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79210373536 +DestChannel: PJSIP/13-0000127f +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724494023.10407 +DestLinkedid: 1724494012.10400 +DialString: 13/sip + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial- +Exten: s +Priority: 52 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +DestChannel: Local/13@from-queue-00000b0a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494023.10403 +DestLinkedid: 1724494012.10400 +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: ARG1 +Value: novm + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: VarSet +Privilege: dialpla +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: dstring +Application: Set +AppData: DSTRING= + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: LOOPCNT +Value: 1 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: NOW=1724494023 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: __FROMEXT +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79210373536 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-recor +Exten: s +Priority: 12 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79210373536 and 12 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: +Priority: 11 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +13:07:04 + +Event: VarSet +Privilege: dialp +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79210373536-20240824-130703-1724494023.10402 +Variable: MACRO_DEPTH +Value: 1 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 792103 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +13:07:04 + +Event: VarSet +Privilege: dialp +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: r +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79210373536 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_IN + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724494023.1040 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1 +Linkedid: 1724494012.10400 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: RINGTIME +Value: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: DSTRING +Value: PJSIP/10/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: fro +Exten: s +Priority: 1 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: __KEEPCID +Value: TRUE + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Variable: __YEAR +Value: 2024 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Variable: __RVOL_MODE +Value: dontcare + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Variable: __FROM_DID +Value: 79217365096 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494023. +Linkedid: 1724494012.10400 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: ANSWEREDTIME_MS +Value: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001281 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494023.10409 +Linkedid: 1724494012.10400 +Variable: __REC_STATUS +Value: RECORDING + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001281 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494023.10409 +Linkedid: 1724494012.10400 +Variable: __DAY +Value: 24 + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001281 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494023.10409 +Linkedid: 1724494012.10400 +Variable: __QCONTEXT +Value: 0 + + +13:07:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001281 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494023.10409 +Linkedid: 1724494012.10400 +Variable: __DIRECTION +Value: + + +13:07:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001281 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 7921 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724494023.10409 +Linkedid: 1724494012.10400 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +13:07:04 + +Event: DialBegin +Privilege: call,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/10-00001281 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724494023.10408 +DestLinkedid: 1724494012.10400 +DialString: 12/sip + + +13:07:04 + +Event: SuccessfulAuth +Privilege: security,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +DestChannel: Local/12@from-queue-00000b09;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494023.10401 +DestLinkedid: 1724494012.10400 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +EventTV: 2024-08-24T13 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 00A82B11-5B5B-EF11-AE2D-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: +UsingPassword: 1 + + +13:07:06 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/13-0000127f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724494023.10407 +Linkedid: 1724494012.10400 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +13:07:06 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: RINGTIME_MS +Value: 3045 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: Local/13@from-queue-00000b0a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494023.10403 +DestLinkedid: 1724494012.10400 +DialStatus: RINGING + + +13:07:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +13:07:07 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: RINGTIME_MS +Value: 3623 +DestChannel: PJSIP/12-00001280 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724494023.10408 +DestLinkedid: 1724494012.10400 +DialStatus: RINGING +Device: PJSIP/12 +State: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:07:08 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/10-00001281 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724494023.10409 +Linkedid: 1724494012.10400 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING + + +13:07:08 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: RINGTIME_MS +Value: 4299 +DestChannel: Local/10@from-queue-00000b0b;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494023.10405 +DestLinkedid: 1724494012.10400 +DialStatus: RINGING + + +13:07:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Device: PJSIP/12 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 339 +LastCall: 1724493561 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:07:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 792103 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Variable: CFIGNORE +Value: +Extension: s +Application: Set +AppData: CFIGNORE= + + +13:07:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +13:07:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000127e)= + + +13:07:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=12/sip + + +13:07:08 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Extension: s +Application: AppDial +AppData: (Out +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/12-00001280 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724494023.10408 +DestLinkedid: 1724494012.10400 +DialStatus: ANSWER +BridgeUniqueid: 19d31c91-fe83-481b-ae3d-11a54d485cce +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:07:08 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: 19d31c91-fe83-481b-ae3d-11a54d485cce +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: BRIDGEPVTCALLID +Value: d1762dfe-103f-477c-a304-4ffa36a71d15 +Device: Local/12@from-queue +State: INUSE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/12@from-queue-00000b09;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494023.10401 +DestLinkedid: + + +13:07:08 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724494023.10403 +Linkedid: 1724494012.10400 +DestChannel: Local/13@from-queue-00000b0a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494023.10403 +DestLinkedid: 1724494012.10400 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:07:08 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: Local/12@from-queue-00000b09;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494023.10401 +DestLinkedid: 1724494012.10400 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 5 +RingTime: 4 +BridgeUniqueid: 943de35a-218a-4b76-a022-4d34f899f297 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:07:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_PRIORITY +Value: 3 +Device: Local/12@from-queue +State: INUSE + + +13:07:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +13:07:08 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/13@from-queue-00000b0a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: GotoIf +AppData: 1?theend + + +13:07:08 + +Event: VarSet +Privilege: dialplan,all +Device: Local/10@from-queue +State: NOT_INUSE +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_EXTEN +Value: 10 +DestChannel: PJSIP/10-00001281 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79210373536 +DestConnectedLineName: 79210373536 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724494023.10409 +DestLinkedid: 1724494012.10400 +DialStatus: CANCEL + + +13:07:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_CONTEXT +Value: + + +13:07:08 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +13:07:08 + +Event: Newexten +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Hint: PJSIP/10&Custom +StatusText: Idle +Source: 79210373536 +Destination: 10 +DestinationContext: ext-local +CallerID: "79210373536" <79210373536> +DestinationChannel: PJSIP/10-00001281 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 4 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724494023.10406 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/10 +State: NOT_INUSE + + +13:07:08 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/12@from-queue-00000b09;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724494023.10406 +Linkedid: 1724494012.10400 +Variable: MACRO_PRIORITY +Value: 1 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10422 +BridgeUniqueid: 943de35a-218a-4b76-a022-4d34f899f297 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:07:08 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: Local/13@from-queue-00000b0a;2 +ActionID: 10425 +BridgeUniqueid: 943de35a-218a-4b76-a022-4d34f899f297 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_EXTEN +Extension: s +Application: Hangup +AppData: + + +13:07:08 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494023.10404 +Linkedid: 1724494012.10400 +Variable: MACRO_PRIORITY +Value: 1 +Source: 79210373536 +Destination: 13 +DestinationContext: ext-local +CallerID: "79210373536" <79210373536> +DestinationChannel: PJSIP/13-0000127f +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 4 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724494023.10404 +UserField: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10426 + + +13:07:18 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:07:18 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: BRIDGEPVTCALLID +Value: +CID-CallingPres: 67 (Number Unavailable) +Cause: 16 +BridgeUniqueid: 676b34fa-3376-4a1e-a460-5c1adf76fb5b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:07:18 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 676b34fa-3376-4a1e-a460-5c1adf76fb5b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-00001274 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Cause: 16 +Cause-txt: Normal Clearing +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_PRIORITY +Value: 1 + + +13:07:18 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: BRIDGEPEER +Value: +Extension: s +Application: GotoIf +AppData: 1?theend +Device: Local/13@from-queue +State: NOT_INUSE +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 16 +TalkTime: 237 +Reason: caller +BridgeUniqueid: c5f753c4-662b-4295-a738-15b8d6d2e197 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:07:18 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_EXTEN +Value: 13 + + +13:07:18 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_PRIORITY +Value: + + +13:07:18 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory + + +13:07:18 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: c5f753c4-662b-4295-a738-15b8d6d2e197 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/rt_769402-00001274 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: Hangup +AppData: +Variable: MACRO_CONTEXT +Value: + + +13:07:18 + +Event: Hangup +Privilege: call,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724493785.10387 +Linkedid: 1724493775.10383 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Device: IAX2/Rahmaninovo +State: UNKNOWN +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10428 + + +13:07:18 + +Event: UserEvent +Privilege: user,all +Channel: Local/13@from-queue-00000b06;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79062025252 +CallerIDName: 79062025252 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724493775.10383 +Linkedid: 1724493775.10383 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000382; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Device: PJSIP/rt_769402 +State: NOT_INUSE +Cause: 16 +Cause-txt: Normal Clearing +Source: 79062025252 +Destination: 13 +DestinationContext: ext-local +CallerID: "79062025252" <79062025252> +DestinationChannel: PJSIP/13-00001278 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 56 +BillableSeconds: 40 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724493785.10387 +UserField: +UserEvent: re + + +13:07:18 + +Event: RTCPSent +Privilege: reporting,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-0000127e +ActionID: 10430 +AccountCode: +Source: 79062025252 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79062025252" <79062025252> +DestinationChannel: Local/10@from-queue-00000b07;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 15 +BillableSeconds: 15 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724493775.10383 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x431d1db3 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724494038.485971 +SentRTP: 1724569384 +SentPackets: 1205 +SentOctets: 192647 +Report0SourceSSRC: 0x00020096 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 1995 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 1 +Report0LSR: 512320012 +Report0DLSR: 3.0570 + + +13:08:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:08:35 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 19d31c91-fe83-481b-ae3d-11a54d485cce +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:08:35 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 19d31c91-fe83-481b-ae3d-11a54d485cce +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: m +Exten: s +Priority: 55 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: ARG2 +Value: 12 + + +13:08:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: ARG5 +Value: + + +13:08:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:08:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001280 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494023.10408 +Linkedid: 1724494012.10400 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +13:08:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fro +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79210373536 +ConnectedLineName: 79210373536 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724494023.10401 +Linkedid: 1724494012.10400 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Variable: MACRO_PRIORITY +Value: + + +13:08:35 + +Event: BridgeDestroy +Privilege: call,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: BRIDGEPEER +Value: +BridgeUniqueid: +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 340 +LastCall: 1724494115 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Device: Local/12@from-queue +State: NOT_INUSE +HoldTime: 5 +TalkTime: 87 +Reason: agent + + +13:08:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macr +Exten: h +Priority: 1 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +13:08:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000127e +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724494012.10400 +Linkedid: 1724494012.10400 +Variable: MACRO_PRIORITY +Value: +Source: 79210373536 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79210373536" <79210373536> +DestinationChannel: Local/12@from-queue-00000b09;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 102 +BillableSeconds: 102 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724494012.10400 +UserField: +Extension: s +Application: Hangup +AppData: + + +13:08:35 + +Event: Devic +Privilege: call,all +Channel: Local/12@from-queue-00000b09;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79210373536 +CallerIDName: 79210373536 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494023.10402 +Linkedid: 1724494012.10400 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10433 + + +13:08:35 + +Event: Cdr +Privilege: cdr,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: Local/12@from-queue-00000b09;2 +ActionID: 10434 +AccountCode: +Source: 79210373536 +Destination: 12 +DestinationContext: ext-local +CallerID: "79210373536" <79210373536> +DestinationChannel: PJSIP/12-00001280 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 91 +BillableSeconds: 86 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724494023.10402 +UserField: + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989816020375 +Priority: 1 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: 989816020375 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, +Variable: ARG3 +Value: + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724494159.10410 +Linkedid: 1724494 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: AMPUSER +Value: 10 +Extension: s +Application: Set +AppData: AMPUSER=10 + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 14 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=10) + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_3 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: Set +AppData: AMPUSERCID=10 +Variable: AMPUSERCID +Value: 10 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_3" <10>) +Variable: MACRO_DEPTH +Value: 1 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:09:19 + +Event: VarSet +Privilege: +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=10 + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: Set +AppData: CDR(cnum)=10 +Variable: MACRO_DEPTH +Value: 1 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989816020375 +Priority: 2 +Uniqueid: 1724494159.10 +Linkedid: 1724494159.10410 +Variable: LOCAL(ARG2) +Value: 989816020375 +Extension: 989816020375 +Application: Gosub +AppData: sub-record-check,s,1(out,989816020375,dontcare) + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __MONTH=08 + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: s +Priority: 10 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: NoOp +AppData: Recordings initialized +Variable: __MON_FMT +Value: wav + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 2 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: out +Application: Set +AppData: RECMODE=yes +Variable: RECMODE +Value: yes + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: recor +Application: Goto +AppData: yes +Variable: LOCAL(ARGC) +Value: 3 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989816020375-10-20240824-130919-1724494159.10410 +Variable: __CALLFILENAME +Value: out-989816020375-10-20240824-130919-1724494159.10 + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: out +Application: Return +AppData: +Variable: ARG3 +Value: + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989816020375 +Priority: 6 +Uniqueid: 1724494159.10410 +Linkedid: 172449 +Variable: _ROUTENAME +Value: Megafon +Extension: 989816020375 +Application: Set +AppData: MOHCLASS=default + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989816020375 +Priority: 11 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: 989816020375 +Application: Macro +AppData: dialout-trunk,6,+79816020375,,off +Variable: _NODEST +Value: + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: DB_RESULT +Value: 10 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=10) + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: ARG1 +Value: 6 +Extension: s +Application: Macro +AppData: outbound-callerid,6 + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: ExecIf +AppData: 0? +Variable: MACRO_DEPTH +Value: 2 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 17244941 +Linkedid: 1724494159.10410 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 12 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: ExecIf +AppData: 0?Set(ALLOWTHISROUTE=YES) +Variable: MACRO_DEPTH +Value: 2 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратур +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?normcid + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: Set +AppData: TRUNKOUTCID=7816 +Variable: MACRO_DEPTH +Value: 2 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: Set +AppData: TIOHIDE=no +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TIOHIDE +Value: no + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 +Variable: MACRO_DEPTH +Value: 2 + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 14 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() +Variable: MACRO_DEPTH +Value: 1 + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 18 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +13:09:19 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79816020375) + + +13:09:19 + +Event: VarSet +Privilege: d +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HASH(__SIPHEADERS,Alert-Info)=unset + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: RINGTIME_MS +Value: + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001283 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724494159.10411 +Linkedid: 1724494159.10410 +Variable: ROUTEID +Value: 1 + + +13:09:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001283 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724494159.10411 +Linkedid: 1724494159.10410 +Variable: __MONTH +Value: 08 + + +13:09:19 + +Event: Newexten +Privilege: +Channel: PJSIP/rt_769402-00001283 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989816020375 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724494159.10411 +Linkedid: 1724494159.10410 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001283 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989816020375 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: +Priority: 5 +Uniqueid: 1724494159.10411 +Linkedid: 1724494159.10410 +Variable: sipheader +Value: unset +Extension: s +Application: Set +AppData: sipheader=unset + + +13:09:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-00001283 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989816020375 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724494159.10411 +Linkedid: 1724494159.10410 +Extension: s +Application: EndWhile +AppData: +Variable: sipkey +Value: + + +13:09:19 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-00001283 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989816020375 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724494159.10411 +DestLinkedid: 1724494159.10410 +DialString: +79816020375@rt_769402 + + +13:09:19 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: 989816020375 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: INUSE +Variable: RINGTIME_MS +Value: 363 +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +DestChannel: PJSIP/rt_769402-00001283 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989816020375 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989816020375 +DestPriority: 1 +DestUniqueid: 1724494159.10411 +DestLinkedid: 1724494159.10410 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:09:21 + +Event: DialState +Privilege: call,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: PROGRESSTIME_MS +Value: 2252 +DestChannel: PJSIP/rt_769402-00001283 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989816020375 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989816020375 +DestPriority: 1 +DestUniqueid: 1724494159.10411 +DestLinkedid: 1724494159.10410 +DialStatus: PROGRESS + + +13:09:46 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-00001283 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989816020375 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989816020375 +Priority: 1 +Uniqueid: 1724494159.10411 +Linkedid: 1724494159.10410 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5168bd5f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724494186.482957 +SentRTP: 1724694160 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0xf88de4cb +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 19713 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 9 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:09:51 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000146; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 127 + + +13:09:51 + +Event: SoftHangupRequest +Privilege: call,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_PRIORITY +Value: + + +13:09:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +13:09:51 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/rt_769402-00001283 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989816020375 +CallerIDName: CI +ConnectedLineNum: 989816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: + + +13:09:51 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/rt_769402 +State: NOT_INUSE +Channel: PJSIP/10-00001282 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001625;avgrxjitter=000.001267;stdevrxjitter=000.000146;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10435 +Source: 78162769402 +Destination: 989816020375 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-00001283 +LastApplication: Dial +LastData: PJSIP/+79816020375@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 32 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724494159.10410 +UserField: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +13:09:51 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989816020375 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724494159.10410 +Linkedid: 1724494159.10410 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10436 + + +13:12:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724494329.10412 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:12:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724494329. +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-131209 +Variable: __YEAR +Value: 2024 + + +13:12:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:12:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +13:12:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:12:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +13:12:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +13:12:09 + +Response: Success +Ping: Pong +Timestamp: 1724494329.346344 +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +13:12:09 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +13:12:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +13:12:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 22 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(num-pres)=allowed_not_screened + + +13:12:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: 2 +Application: AGI +AppData: agi + + +13:12:11 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +CommandId: 1022783008 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +13:12:11 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +CommandId: 166654087 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +13:12:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +CommandId: 1435264466 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +13:12:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724494329.104 +Linkedid: 1724494329.10412 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +13:12:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724494329.10 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +13:12:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: AMPUSER +Value: 79602007771 +Extension: s +Application: Set +AppData: AMPUSER=79602007771 + + +13:12:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +13:12:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 796 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +13:12:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +13:12:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +13:12:11 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +13:12:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +13:12:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +13:12:11 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +13:12:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +13:12:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 796020 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +13:12:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +13:12:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +13:12:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +13:12:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +13:12:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:12:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:12:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +13:12:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Extension: 194 +Application: QueueLog +AppData: 194,1724494329.10412,NONE,DID,79217365096 + + +13:12:20 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:12:20 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10 +Linkedid: 1724494329.10412 +Variable: QUEUEJOINTIME +Value: 1724494340 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494340.10413 +Linkedid: 1724494329.10412 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494340.10413 +Linkedid: 1724494329.10412 +Variable: __RINGINGSENT +Value: TRUE + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494340.10413 +Linkedid: 1724494329.10412 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: __FROMQUEUEEXTEN +Value: 79602007771 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: __TIMESTR +Value: 20240824-131209 + + +13:12:20 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b0c;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724494340.10413 +LocalOneLinkedid: 1724494329.10412 +LocalTwoChannel: Local/12@from-queue-00000b0c;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79602007771 +LocalTwoCallerIDName: 79602007771 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724494340.10414 +LocalTwoLinkedid: 1724494329.10412 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b0c;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: en +DestAccountCode: + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494340.10415 +Linkedid: 1724494329.10412 +DestChannel: Local/12@from-queue-00000b0c;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724494340.10413 +DestLinkedid: 1724494329.10412 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494340.10415 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494340.10415 +Linkedid: 1724494329.10412 +Variable: __DIRECTION +Value: + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001284 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: __MON_FMT +Value: wav + + +13:12:20 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b0d;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724494340.10415 +LocalOneLinkedid: 1724494329.10412 +LocalTwoChannel: Local/13@from-queue-00000b0d;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79602007771 +LocalTwoCallerIDName: 79602007771 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724494340.10416 +LocalTwoLinkedid: 1724494329.10412 +LocalOptimization: No + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494340.10417 +Linkedid: 1724494329.10412 +DestChannel: Local/13@from-queue-00000b0d;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724494340.10415 +DestLinkedid: 1724494329.10412 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494340.10417 +Linkedid: 1724494329.10412 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494340.10417 +Linkedid: 1724494329.10412 +Variable: __DAY +Value: 24 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +13:12:20 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: __FROM_DID +Value: 79217365096 + + +13:12:20 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b0e;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724494340.10417 +LocalOneLinkedid: 1724494329.10412 +LocalTwoChannel: Local/10@from-queue-00000b0e;2 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 3 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +DestChannel: Local/10@from-queue-00000b0e;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724494340.10417 +DestLinkedid: 1724494329.10412 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 12 +Application: GotoIf +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 2 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.1 +Variable: QAGENT +Value: 10 +Extension: 10 +Application: Set +AppData: QAGENT=10 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: DB_RESULT +Value: 0 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: ARG2 +Value: 10 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: AMPUSER +Value: 796020077 +Extension: s +Application: Set +AppData: AMPUSER=79602007771 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724494340.10414 +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79602007771 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: CALLERID(number)=79602007771 +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724494340.1 +Linkedid: 1724494329.10412 +Variable: __TTL +Value: 63 +Extension: s +Application: Set +AppData: __TTL=63 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: CDR(cnam)=79602007771 +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 796020 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79602007771 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79602007771 and 10 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329. +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +13:12:20 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79602007771-20240824-131220-1724494340.10418 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7960 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: dstring +Priority: 20 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79602007771 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724494340.10418 +Linkedid: 172449432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 +Variable: MACRO_DEPTH +Value: 1 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: PROGRESSTIME +Value: + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:12:20 + +Event: Var +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: __MIXMON_ID +Value: +Extension: s +Application: Set +AppData: __DAY=24 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queu +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494340.10419 +Linkedid: 1724494329.10412 +Variable: __DAY +Value: 24 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001285 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494340.10419 +Linkedid: 1724494329.10412 +Variable: __QC_CONFIRM +Value: 0 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001285 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494340.10419 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +13:12:20 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/10-00001285 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724494340.10419 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +13:12:20 + +Event: Newexten +Privilege: +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: MACRO_DEPTH +Value: 1 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: ARG3 +Value: 0 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: CHANCONTEXT +Value: from + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: AMPUSER=79602007771 +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 +Variable: MACRO_DEPTH +Value: 2 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001285 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724494340.10419 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to chan + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001285 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724494340.10419 +Linkedid: 1724494329.10412 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +13:12:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79602007771 + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MIXMONITOR_FILENAME +Value: /var/spool +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79602007771-20240824-131220-1724494340.10414.wav,abi(), + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +13:12:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724494340.10415 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 796020077 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724494340 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724494340.10416 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79602007771 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MIXMONITOR_FILENAME +Value: /var/spool +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79602007771-20240824-131220-1724494340.10416.wav,abi(), + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724494340.1 +Linkedid: 1724494329.10412 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: +Priority: 7 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724494329.10412 +Variable: DEXTEN +Value: 13 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: ctset +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 796020 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: DIALEDPEERNAME +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +13:12:21 + +Event: Newstate +Privilege: call,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: PROGRESSTIME_MS +Value: +DestChannel: PJSIP/10-00001285 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724494340.10419 +DestLinkedid: 1724494329.10412 +DialString: 10/sip + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 796 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +DestChannel: Local/10@from-queue-00000b0e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494340.10417 +DestLinkedid: 1724494329.10412 +DialStatus: RINGING +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: +Device: Local/10@from-queue +State: INUSE + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724494340.10414 +Linkedid: +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: dstring +Application: Set +AppData: DEVICES=12 +Variable: DEVICES +Value: 12 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_1 + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +13:12:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +13:12:21 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/13-00001286 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: PROGRESSTIME_MS +Value: + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001286 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494340.10420 +Linkedid: 1724494329.1041 +Variable: __RINGTIMER +Value: 60 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001286 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494340.10420 +Linkedid: 1724494329.10412 +Variable: __REVERSAL_REJECT +Value: FALSE + + +13:12:21 + +Event: Newext +Privilege: dialplan,all +Channel: PJSIP/13-00001286 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724494340.10420 +Linkedid: 1724494329.10412 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +13:12:21 + +Event: VarSet +Privilege: call,all +Channel: PJSIP/12-00001287 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +13:12:21 + +Event: VarSet +Privilege: dia +Channel: PJSIP/12-00001287 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Variable: __FROMEXTEN +Value: 79602007771 + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001287 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Variable: __FROMQ +Value: true + + +13:12:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001287 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-00001286 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 + + +13:12:21 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Device: Local/12@from-queue +State: INUSE +DestChannel: Local/12@from-queue-00000b0c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494340.10415 +DestLinkedid: 1724494329.10412 +DialString: 12/sip +DialStatus: RINGING + + +13:12:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-00001285 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724494340.10419 +Linkedid: 1724494329.10412 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +13:12:23 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: RINGTIME_MS +Value: 3377 +Device: PJSIP/10 +State: RINGING +DestChannel: Local/10@from-queue-00000b0e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494340.10417 +DestLinkedid: 1724494329.10412 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:12:23 + +Event: DialState +Privilege: call,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 3656 +DestChannel: PJSIP/12-00001287 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724494340.10421 +DestLinkedid: 1724494329.10412 +DialStatus: RINGING + + +13:12:23 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 340 +LastCall: 1724494115 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:12:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 4244 + + +13:12:24 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +DestChannel: Local/13@from-queue-00000b0d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494340.10415 +DestLinkedid: 1724494329.10412 +DialStatus: RINGING + + +13:12:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001287 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Variable: DIALEDPEERNUMBER +Value: 12/sip +Extension: s +Application: Macro +AppData: auto-blkvm + + +13:12:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001287 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 1 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/12 +State: INUSE +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 340 +LastCall: 1724494115 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: ExecIf +AppData: 1?Set(CDR(recordingfile)=external-12-79602007771-20240824-131220-1724494340.10414.wav) + + +13:12:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001287 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal + + +13:12:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001287 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602007771 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +13:12:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001287 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +13:12:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001287 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +13:12:27 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.1041 +BridgeUniqueid: 6b16d943-3bb9-4a14-b343-eb1d3d13643d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000b0d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494340.10415 +DestLinkedid: 1724494329.10412 +DialStatus: CANCEL + + +13:12:27 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Source: 79602007771 +Destination: 13 +DestinationContext: ext-local +CallerID: "79602007771" <79602007771> +DestinationChannel: PJSIP/13-00001286 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724494340.10416 +UserField: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +DestChannel: Local/10@from-queue-00000b0e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494340.10415 +DestLinkedid: 1724494329.10412 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:12:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Cause: 26 +DestChannel: PJSIP/13-00001286 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724494340.10420 +DestLinkedid: 1724494329.10412 +DialStatus: CANCEL +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: ARG2 +Value: 13 + + +13:12:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: ARG5 +Value: + + +13:12:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: QUEUEPOSITION +Value: 1 +Extension: h +Application: Macro +AppData: hangupcall, +Device: Queue +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Cause: 16 +Queue: 194 +Position: 1 +Count: 0 +BridgeUniqueid: 6b16d943-3bb9-4a14-b343-eb1d3d13643d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:12:27 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +DestChannel: Local/12@from-queue-00000b0c;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494340.10413 +DestLinkedid: 1724494329.10412 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 7 +RingTime: 7 +Extension: s +Application: GotoIf +AppData: 1?theend + + +13:12:27 + +Event: VarSet +Privilege: dialplan, +BridgeUniqueid: 6b16d943-3bb9-4a14-b343-eb1d3d13643d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: BRIDGEPVTCALLID +Value: 3c71dc4f-0f37-428a-ade2-9c8fe210ce0e +DestChannel: PJSIP/10-00001285 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724494340.10419 +DestLinkedid: 1724494329.10412 +DialStatus: CANCEL +Device: Local/10@from-queue +State: NOT_INUSE + + +13:12:27 + +Event: V +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: ARG1 +Value: + + +13:12:27 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Cause-txt: Answered elsewhere +Extension: h +Application: Macro +AppData: hangupcall, + + +13:12:27 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b0d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724494340.10416 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup + + +13:12:27 + +Event: DeviceStateChange +Privilege: call,all +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Source: 79602007771 +Destination: 10 +DestinationContext: ext-local +CallerID: "79602007771" <79602007771> +DestinationChannel: PJSIP/10-00001285 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724494340.10418 +UserField: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INU + + +13:12:27 + +Event: VarSet +Privilege: dialplan,all +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: 4c04ada4-2c54-4efc-aed8-1fc332e9fb05 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000b0e;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: BRIDGEPEER +Value: Local/12@from-queue-00000b0c;1 + + +13:12:27 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494340.10418 +Linkedid: 1724494329.10412 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10442 + + +13:12:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +13:12:56 + +Event: VarSet +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000313; mintxmes=085.367286; maxtxmes=085.367289; avgtxmes=085.367288; stdevtxmes=000.000001; +DestChannel: Local/12@from-queue-00000b0c;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602007771 +DestConnectedLineName: 79602007771 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494340.10413 +DestLinkedid: 1724494329.10412 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 7 +TalkTime: 28 +Reason: caller + + +13:12:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: MACRO_CONTEXT +Value: ext-queues +BridgeUniqueid: 4c04ada4-2c54-4efc-aed8-1fc332e9fb05 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:12:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 7960200777 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Hangup +AppData: +Source: 79602007771 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79602007771" <79602007771> +DestinationChannel: Local/12@from-queue-00000b0c;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 46 +BillableSeconds: 46 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724494329.10412 +UserField: + + +13:12:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001284 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724494329.10412 +Linkedid: 1724494329.10412 +Variable: R +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:12:56 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE +BridgeUniqueid: 6b16d943-3bb9-4a14-b343-eb1d3d13643d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10443 +Variable: BRIDGEPEER + + +13:12:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: ARG3 +Value: 0 + + +13:12:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: MACRO_EXTEN +Value: + + +13:12:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:12:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001287 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602007771 +ConnectedLineName: 79602007771 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494340.10421 +Linkedid: 1724494329.10412 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: RTPAUDIOQOSJITTER +Value: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10444 +Source: 79602007771 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79602007771" <79602007771> +DestinationChannel: Local/10@from-queue-00000b0e;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 7 +BillableSeconds: 7 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724494329.10412 +UserField: +BridgeUniqueid: 6b16d943-3bb9-4a14-b343-eb1d3d13643d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:12:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 3 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Variable: RTPAUDIOQOSMES +Value: 1 +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 341 +LastCall: 1724494375 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10445 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +13:12:56 + +Event: Registry +Privilege: system,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602007771 +CallerIDName: 79602007771 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494340.10414 +Linkedid: 1724494329.10412 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +Source: 79602007771 +Destination: 12 +DestinationContext: ext-local +CallerID: "79602007771" <79602007771> +DestinationChannel: PJSIP/12-00001287 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 35 +BillableSeconds: 28 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724494340.10414 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10446 +ChannelType: PJSIP +Username: sip +Domain: sip +Status: Registered + + +13:16:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T13 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +13:16:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T13 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +13:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724494701.10422 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724494701. +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-131821 +Variable: __YEAR +Value: 2024 + + +13:18:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +13:18:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:18:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +13:18:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +13:18:21 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +13:18:21 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +13:18:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +13:18:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +13:18:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: 2 +Application: AGI +AppData: agi + + +13:18:22 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +CommandId: 1789471795 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +13:18:22 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +CommandId: 1047333518 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +13:18:23 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +CommandId: 307268841 +Command: VERBOSE "Goto +ResultCode: 200 +Result: Success + + +13:18:23 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +CommandId: 203463427 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +13:18:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.104 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +13:18:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001288 + + +13:18:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001288 + + +13:18:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +13:18:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: CDR(cnum)=79011849637 +Variable: MACRO_DEPTH +Value: 1 + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79011849637 + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001288)=TRUE + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724494701.10 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +13:18:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +13:18:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +13:18:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +13:18:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: 194 +Application: QueueLog +AppData: 194,1724494701.10422,NONE,DID,79217365096 + + +13:18:32 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:18:32 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494701.10 +Linkedid: 1724494701.10422 +Variable: QUEUEJOINTIME +Value: 1724494712 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494712.10423 +Linkedid: 1724494701.10422 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494712.10423 +Linkedid: 1724494701.10422 +Variable: __RINGINGSENT +Value: TRUE + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494712.10423 +Linkedid: 1724494701.10422 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: __FROMQUEUEEXTEN +Value: 79011849637 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: __TIMESTR +Value: 20240824-131821 + + +13:18:32 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b0f;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724494712.10423 +LocalOneLinkedid: 1724494701.10422 +LocalTwoChannel: Local/12@from-queue-00000b0f;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79011849637 +LocalTwoCallerIDName: 79011849637 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724494712.10424 +LocalTwoLinkedid: 1724494701.10422 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b0f;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: en +DestAccountCode: + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494712.10425 +Linkedid: 1724494701.10422 +DestChannel: Local/12@from-queue-00000b0f;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724494712.10423 +DestLinkedid: 1724494701.10422 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494712.10425 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494712.10425 +Linkedid: 1724494701.10422 +Variable: __DIRECTION +Value: + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001288 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: __MON_FMT +Value: wav + + +13:18:32 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b10;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724494712.10425 +LocalOneLinkedid: 1724494701.10422 +LocalTwoChannel: Local/13@from-queue-00000b10;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79011849637 +LocalTwoCallerIDName: 79011849637 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724494712.10426 +LocalTwoLinkedid: 1724494701.10422 +LocalOptimization: No + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494712.10427 +Linkedid: 1724494701.10422 +DestChannel: Local/13@from-queue-00000b10;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724494712.10425 +DestLinkedid: 1724494701.10422 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494712.10427 +Linkedid: 1724494701.10422 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494712.10427 +Linkedid: 1724494701.10422 +Variable: __DAY +Value: 24 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +13:18:32 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: __FROM_DID +Value: 79217365096 + + +13:18:32 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b11;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724494712.10427 +LocalOneLinkedid: 1724494701.10422 +LocalTwoChannel: Local/10@from-queue-00000b11;2 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 3 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +DestChannel: Local/10@from-queue-00000b11;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724494712.10427 +DestLinkedid: 1724494701.10422 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 12 +Application: GotoIf +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724494712.10424 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7901 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000b0f;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000b0f;2 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000b0f;2 +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 11 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: CALLERID(number)=79011849637 +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 2 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: 13 +Application: Set +AppData: __FROMQ=true +Variable: QAGENT +Value: 13 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG3 +Value: 0 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000b10;2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: AMPUSER +Value: 79011849637 +Extension: s +Application: Set +AppData: AMPUSER=79011849637 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: 10 +Application: Set +AppData: QAGENT=10 +Variable: QAGENT +Value: 10 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: DB_RESULT +Value: 0 +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub- +Exten: s +Priority: 3 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724494712 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +13:18:32 + +Event: VarSet +Privilege: d +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: MACRO_DEPTH +Value: 1 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordch +Application: Goto +AppData: yes + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79011849637) + + +13:18:32 + +Event: MixMoni +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-12-79011849637-20240824-131832-1724494712.10424.wav +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79011849637-20240824-131832-1724494712.10424.wav,abi(), + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: ARG1 +Value: +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_PRIORITY +Value: 3 +Extension: exten +Application: Return +AppData: + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724494712.10428 +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724494712.10428 +Linkedid: 17244947 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b11;2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: CHANEXTEN=10 +Variable: CHANEXTEN +Value: 10 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: CALLERID(name)=79011849637 +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724494712.10426 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724494712 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79011849637) + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/ +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79011849637-20240824-131832-1724494712.10426.wav,abi(), + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 172 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494712.10426 +Linkedid: +Variable: DEXTEN +Value: 13 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724494712.10426 +Linkedid: 17 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +13:18:32 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: ctset +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: CDR(cnum)=79011849637 +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: RingGroupMethod=none +Variable: MACRO_DEPTH +Value: 1 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: DB_RESULT +Value: +Extension: s +Application: Set +AppData: __PICKUPMARK=10 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +13:18:32 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/13-00001289 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494712.10429 +Linkedid: 1724494701.104 +Variable: PROGRESSTIME_MS +Value: + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001289 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494712.10429 +Linkedid: 1724494701.10422 +Variable: __FROMEXTEN +Value: 79011849637 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001289 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724494712.10429 +Linkedid: 1724494701.10422 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: GotoIf +AppData: 0?nodial + + +13:18:32 + +Event: VarSet +Privilege: dia +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79011849637 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:18:32 + +Event: VarSet +Privilege: dialpl +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 17244947 +Linkedid: 1724494701.10422 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 790118496 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701. +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: +Value: external-10-79011849637-20240824-131832-1724494712.10428 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79011849637-20240824-131832-1724494712.10428 + + +13:18:32 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000b11;2 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000b11;2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG3 +Value: + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 790 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +13:18:32 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ds +Priority: 2 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: DB_RESULT +Value: 10 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +13:18:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +13:18:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +13:18:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +13:18:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +13:18:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-on +Exten: dstring +Priority: 20 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +13:18:33 + +Event: Newexten +Privilege: d +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724494712.1 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:18:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +13:18:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 55 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: PROGRESSTIME +Value: + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000128a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494712.10430 +Linkedid: 1724494701.10422 +DestChannel: Local/13@from-queue-00000b10;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494712.10425 +DestLinkedid: 1724494701.10422 +DialString: 13/sip +DialStatus: RINGING +Variable: __KEEPCID +Value: TRUE + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000128a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494712.10430 +Linkedid: 1724494701.10422 +Variable: __YEAR +Value: 2024 + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000128a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-interna +Exten: s +Priority: 1 +Uniqueid: 1724494712.10430 +Linkedid: 1724494701.10422 +Variable: __SIGNORE +Value: TRUE + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000128a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 17244 +Linkedid: 1724494701.10422 +Variable: __MOHCLASS +Value: + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 12 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: dstring +Application: Set +AppData: DEVICES=12 +Variable: DEVICES +Value: 12 + + +13:18:33 + +Event: Newex +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: MACRO_DEPTH +Value: 2 + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000128a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724494712.10430 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: While +AppData: 0 + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Device: Local/13@from-queue +State: INUSE + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: dstring +Priority: 14 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +13:18:33 + +Event: DialBegin +Privilege: call,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 +DestChannel: PJSIP/10-0000128a +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: LOCAL(ARGC) +Value: 0 +DestChannel: Local/10@from-queue-00000b11;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494712.10427 +DestLinkedid: 1724494701.10422 +DialStatus: RINGING +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) + + +13:18:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +13:18:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7901184963 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724494712.10424 +Linkedid: 172 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-on +Exten: s +Priority: 1 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: DIALEDTIME +Value: + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Variable: __REC_STATUS +Value: RECORDING +Device: Local/10@from-queue +State: INUSE + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Variable: __DAY +Value: 24 + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: fr +Exten: s +Priority: 1 +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Variable: __QCONTEXT +Value: 0 + + +13:18:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000128b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Variable: __DIRECTION +Value: + + +13:18:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +13:18:33 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/12@from-queue-00000b0f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494712.1 +DestLinkedid: 1724494701.10422 +DialString: 12/sip + + +13:18:33 + +Event: DeviceStateChange +Privilege: call,all +Device: Local/12@from-queue +State: INUSE + + +13:18:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000128a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724494712.10430 +Linkedid: 1724494701.10422 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +13:18:35 + +Event: DialState +Privilege: call,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: RINGTIME_MS +Value: 3175 +DestChannel: Local/10@from-queue-00000b11;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494712.10427 +DestLinkedid: 1724494701.10422 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:18:35 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3786 + + +13:18:36 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +DestChannel: Local/12@from-queue-00000b0f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494712.10423 +DestLinkedid: 1724494701.10422 +DialStatus: RINGING +Device: PJSIP/12 +State: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 341 +LastCall: 1724494375 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:18:36 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 4484 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:18:36 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +DestChannel: Local/13@from-queue-00000b10;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494712.10425 +DestLinkedid: 1724494701.10422 +DialStatus: RINGING + + +13:18:37 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/12-0000128b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: auto-blkvm +Hint: PJSIP/12&Custom +Status: 1 +StatusText: InUse + + +13:18:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 2 +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MACRO_RESULT= +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 341 +LastCall: 1724494375 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:18:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Variable: +Value: from-internal +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal + + +13:18:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Extension: s +Application: Macro +AppData: blkvm-clr, +Variable: MA +Value: + + +13:18:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_CONTEXT +Value: macro- + + +13:18:37 + +Event: DialEnd +Privilege: call,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +13:18:38 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +BridgeUniqueid: e6bc009d-05ab-4048-aad6-1d709bf42c5f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: INUSE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000b11;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494712.10425 +DestLinkedid: 1724494701.10422 +DialStatus: CANCEL + + +13:18:38 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000b11;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +DestChannel: Local/10@from-queue-00000b11;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724494712.10427 +DestLinkedid: 1724494701.10422 +DialStatus: CANCEL +Device: Local/12@from-queue +State: INUSE +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:18:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Local/10@from-queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: DIALSTATUS +Value: CANCEL +DestChannel: PJSIP/10-0000128a +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724494712.10430 +DestLinkedid: 1724494701.10422 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 5 +RingTime: 5 +BridgeUniqueid: 4ea7981c-dd56-4f29-82e6-36656274b952 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL + + +13:18:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: ARG2 +Value: + + +13:18:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:18:38 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724494712.10423 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: 4ea7981c-dd56-4f29-82e6-36656274b952 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +13:18:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724494712.10428 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10448 +Device: PJSIP/10 +State: NOT_INUSE +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:18:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 13 +ConnectedLineName: Реги +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +DestChannel: PJSIP/13-00001289 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79011849637 +DestConnectedLineName: 79011849637 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724494712.10429 +DestLinkedid: 1724494701.10422 +DialStatus: CANCEL + + +13:18:38 + +Event: Cdr +Privilege: cdr,all +Channel: Local/10@from-queue-00000b11;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: ARG2 +Value: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10449 +Source: 79011849637 +Destination: 10 +DestinationContext: ext-local +CallerID: "79011849637" <79011849637> +DestinationChannel: PJSIP/10-0000128a +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 5 +BillableSeconds: 0 +Disposition: NO AN + + +13:18:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b10;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: +Linkedid: 1724494701.10422 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:18:38 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-00001289 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724494712.10429 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@ +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:18:38 + +Event: Newexten +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: 662d2248-3646-4083-ada3-b47dbab0f54e +Family: refreshcallhistory +Channel: Local/13@from-queue-00000b10;2 +ActionID: 10451 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: e6bc009d-05ab-4048-aad6-1d709bf42c5f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID +Source: 79011849637 +Destination: 13 +DestinationContext: ext-local +CallerID: "79011849637" <79011849637> +DestinationChannel: PJSIP/13-00001289 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724494712.10426 +UserField: + + +13:18:38 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494712.10426 +Linkedid: 1724494701.10422 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10452 + + +13:20:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79011849637 +ConnectedLineName: 79011849637 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724494712.10431 +Linkedid: 1724494701.10422 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.001625;avgrxjitter=000.001153;stdevrxjitter=000.000134;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +13:20:03 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/12-0000128b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000134; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +13:20:03 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 55 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 0 +Device: PJSIP/12 +State: NOT_INUSE +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 342 +LastCall: 1724494375 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:20:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +13:20:03 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/12 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10453 +Source: 79011849637 +Destination: 12 +DestinationContext: ext-local +CallerID: "79011849637" <79 + + +13:20:03 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000b0f;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724494712.10424 +Linkedid: 1724494701.10422 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +13:20:03 + +Event: SoftHangupRequest +Privilege: call,all +Device: Local/12@from-queue +State: NOT_INUSE +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 4ea7981c-dd56-4f29-82e6-36656274b952 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 5 +TalkTime: 86 +Reason: agent + + +13:20:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724494701.104 +Linkedid: 1724494701.10422 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +13:20:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10455 +Variable: MACRO_PRIORITY +Source: 79011849637 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79011849637" <79011849637> +DestinationChannel: Local/12@from-queue-00000b0f;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 102 +BillableSeconds: 102 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724494701.10422 +UserField: + + +13:20:03 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001288 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79011849637 +CallerIDName: 79011849637 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724494701.10422 +Linkedid: 1724494701.10422 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10456 +Source: 79011849637 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79011849637" <79011849637> +DestinationChannel: Local/10@from-queue-00000b11;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08- +Duration: 5 +BillableSeconds: 5 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724494701.10422 +UserField: + + +13:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724495389.10432 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724495389. +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-132949 +Variable: __YEAR +Value: 2024 + + +13:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +13:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:29:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +13:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +13:29:49 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +13:29:49 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +13:29:49 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +13:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +13:29:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: 2 +Application: AGI +AppData: agi + + +13:29:50 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +CommandId: 1246611442 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +13:29:50 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +CommandId: 587678990 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +13:29:51 + +Event: AGIExecStart +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +CommandId: 322661434 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 16 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DEVICE_STATE(Custom + + +13:29:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724495389.10432 +Variable: TOUCH_MONITOR +Value: 1724495389.10432 + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724495389.10432 +Linkedid: 172449538 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-0000128c +Variable: MACRO_DEPTH +Value: 1 + + +13:29:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 8 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: HOTDESCKCHAN +Value: Megafon_3-0000128c +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-0000128c + + +13:29:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 1 + + +13:29:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 1 + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: s +Application: NoOp +AppData: Macro Depth is 1 +Variable: MACRO_DEPTH +Value: 1 + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TTL=64 + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CDR(cnam)=79602052318 + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 3 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: __FROMQUEUEEXTEN +Value: 79602052318 +Extension: 194 +Application: Set +AppData: __FROMQUEUEEXTEN=79602052318 + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 1 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 1?Set(__BLKVM_CHANNEL=PJSIP/Megafon_3-0000128c) + + +13:29:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: MacroExit +AppData: + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 8 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: QCIDPP +Value: +Extension: 194 +Application: Set +AppData: QCIDPP= + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 14 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: __RVOL_MODE +Value: dontcare +Extension: 194 +Application: ExecIf +AppData: 0?Set(__ALERT_INFO=) + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 19 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: QRETRY +Value: +Extension: 194 +Application: Set +AppData: QRETRY= + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 24 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: VQ_GOSUB +Value: +Extension: 194 +Application: Set +AppData: VQ_GOSUB= + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724495389.10432 +Linkedid: 1 +Variable: QPOSITION +Value: +Extension: 194 +Application: Set +AppData: QPOSITION= + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:29:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: LOCAL(ARG3) +Value: 194 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) + + +13:29:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +13:29:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: __SIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +13:29:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +13:29:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: 194 +Application: QueueLog +AppData: 194,1724495389.10432,NONE,DID,79217365096 + + +13:29:59 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:29:59 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495389.10 +Linkedid: 1724495389.10432 +Variable: QUEUEJOINTIME +Value: 1724495399 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +13:29:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724495399.10433 +Linkedid: 1724495389.10432 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +13:29:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724495399.10433 +Linkedid: 1724495389.10432 +Variable: __RINGINGSENT +Value: TRUE + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724495399.10433 +Linkedid: 1724495389.10432 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: __FROMQUEUEEXTEN +Value: 79602052318 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: __TIMESTR +Value: 20240824-132949 + + +13:30:00 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b12;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724495399.10433 +LocalOneLinkedid: 1724495389.10432 +LocalTwoChannel: Local/12@from-queue-00000b12;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79602052318 +LocalTwoCallerIDName: 79602052318 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724495399.10434 +LocalTwoLinkedid: 1724495389.10432 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b12;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: en +DestAccountCode: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495399.10435 +Linkedid: 1724495389.10432 +DestChannel: Local/12@from-queue-00000b12;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724495399.10433 +DestLinkedid: 1724495389.10432 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495399.10435 +Linkedid: 1 +Variable: __FROMQ +Value: true +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495399.10435 +Linkedid: 1724495389.10432 +Variable: __MON_FMT +Value: wav +Extension: 12 +Application: GotoIf +AppData: 0?hangup + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: +Value: 13@from-queue/n +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: __CALLEE_ACCOUNCODE +Value: + + +13:30:00 + +Event: VarSet +Privilege: dialpl +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: __MON_FMT +Value: wav +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +13:30:00 + +Event: LocalBridge +Privilege: call,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: DB_RESULT +Value: 0 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b13;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: D + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: 12 +Application: Macro +AppData: 0?Set(__CWIGNORE=) +Variable: __RINGTIMER +Value: 60 +DestChannel: Local/13@from-queue-00000b13;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724495399.10435 +DestLinkedid: 1724495389.10432 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +13:30:00 + +Event: Newchannel +Privilege: call,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: ARG5 +Value: 0 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724495399.10437 +Linkedid: 1724495389.10432 +Variable: __RVOL_MODE +Value: dontcare +Extension: s +Application: Macro +AppData: user-callerid, +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724495399.10434 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b12;2 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: __RVOL_MODE +Value: dontcare +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: __TTL +Value: 64 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: __MON_FMT +Value: wav + + +13:30:00 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: __DIRECTION +Value: +Extension: s +Application: Set +AppData: CALLERID(number)=79602052318 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b14;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 + + +13:30:00 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000b12;2 +Variable: HOTDESCKCHAN +Value: 12@from-queue-00000b12;2 +DestChannel: Local/10@from-queue-00000b14;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495399.10437 +DestLinkedid: 1724495389.10432 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 11 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: CALLERID(number)=79602052318 +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: mac +Exten: s +Priority: 53 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: CDR(cnum)=79602052318 +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: RingGroupMethod=none +Variable: MACRO_DEPTH +Value: 1 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: RT +Value: +Extension: s +Application: Set +AppData: RT= + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +13:30:00 + +Event: New +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: __FROMEXTEN=79602052318 +Variable: MACRO_DEPTH +Value: 1 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: __CALLFILENAME +Value: external-12-79602052318-20240824-132959-1724495399.10434 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79602052318-20240824-132959-1724495399.10434 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000b12;2 +Variable: MACRO_DEPTH +Value: 1 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: recordcheck +Priority: 25 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: ARG3 +Value: 12 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: DB_RESULT +Value: 12 +Extension: dstring +Application: Set +AppData: DSTRING= + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: dstring +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: ctset +Priority: 1 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79602052318 +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724495399.1 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 44 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: s +Application: Dial +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389. +Variable: RINGTIME_MS +Value: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: __REC_POLICY_MODE +Value: YE + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: __CALLEE_ACCOUNCODE +Value: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 7960205 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/12-0000128d + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +DestChannel: Local/12@from-queue-00000b12;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495399.10433 +DestLinkedid: 1724495389.10432 +DialString: 12/sip +Device: Local/12@from-queue +State: INUSE +DialStatus: RINGING +Extension: 13 +Application: Set +AppData: QAGENT=13 +Variable: QAGENT +Value: 13 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: DB_RESULT +Value: 0 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: ARG2 +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79602052318 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79602052318 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +13:30:00 + +Event: Newexten +Privilege: dialplan,al +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 +Variable: MACRO_DEPTH +Value: 1 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialize + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-132959 +Variable: MACRO_DEPTH +Value: 1 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79602052318 and 13 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: CALLEE +Value: yes + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARGC) +Value: 3 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: __REC_POLICY_MODE +Value: YES + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79602052318) +Variable: MACRO_DEPTH +Value: 1 + + +13:30:00 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/13@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-13-79602052318-20240824-132959-1724495399.10436.wav +Extension: 10 +Application: Set +AppData: __FROMQ=true + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 22 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000b13;2 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000b13;2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: DB_RESULT +Value: 0 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG3 +Value: 0 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000b14;2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: AMPUSER +Value: 79602052318 +Extension: s +Application: Set +AppData: AMPUSER=79602052318 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: Newexte +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: CDR(cnum)=79602052318 +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-re +Exten: s +Priority: 8 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79602052318 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79602052318 and 10 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724495399.10438 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79602052318-20240824-132959-1724495399.10 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +13:30:00 + +Event: New +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: dstring +Priority: 1 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79602052318 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: RINGTIME +Value: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000128e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495399.10440 +Linkedid: 1724495389.10432 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79602052318-20240824-132959-1724495399.10436.wav + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000128e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495399.10440 +Linkedid: 1724495389.10432 +Variable: __DAY +Value: 24 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000128e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495399.10440 +Linkedid: 1724495389.10432 +Variable: __ +Value: 0 + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000128e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724495399.10440 +Linkedid: 1724495389.10432 +Variable: __DIRECTION +Value: +Extension: 10 +Application: AppDial + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000128e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724495399.10440 +Linkedid: 1724495389.10432 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-che +Exten: recordcheck +Priority: 25 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: exten +Priority: 12 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +13:30:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +13:30:00 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +13:30:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 13 +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: dstring +Priority: 14 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-o +Exten: ctset +Priority: 2 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +13:30:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724495 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +13:30:01 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +13:30:01 + +Event: VarSet +Privilege: call,all +Channel: PJSIP/13-0000128f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495399.10441 +Linkedid: 1724495389.10432 +Variable: PROGRESSTIME_MS +Value: + + +13:30:01 + +Event: VarSet +Privilege: dia +Channel: PJSIP/13-0000128f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495399.10441 +Linkedid: 1724495389.10432 +Variable: __FROMEXTEN +Value: 79602052318 + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000128f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495399.10441 +Linkedid: 1724495389.10432 +Variable: __FROMQ +Value: true + + +13:30:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000128f +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/10-0000128e +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 + + +13:30:01 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +DestChannel: Local/13@from-queue-00000b13;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495399.10437 +DestLinkedid: 1724495389.10432 +DialString: 13/sip +Device: Local/13@from-queue +State: INUSE +DialStatus: RINGING + + +13:30:03 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 3443 +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +DestChannel: PJSIP/12-0000128d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724495399.10439 +DestLinkedid: 1724495389.10432 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 342 +LastCall: 1724494803 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:30:03 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 3681 +DestChannel: Local/10@from-queue-00000b14;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495399.10437 +DestLinkedid: +DialStatus: RINGING + + +13:30:04 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/13-0000128f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724495399.10441 +Linkedid: 1724495389.10432 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING + + +13:30:04 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: RINGTIME_MS +Value: 4373 +DestChannel: Local/13@from-queue-00000b13;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495399.10435 +DestLinkedid: 1724495389.10432 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:30:07 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/12-0000128d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: DIALEDPEERNUMBER +Value: 12/sip +Extension: s +Application: Macro +AppData: auto-blkvm +Hint: PJSIP/12&Custom +Status: 1 +StatusText: InUse + + +13:30:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 2 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/12 +State: INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 342 +LastCall: 1724494803 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Set +AppData: 1?Set(CDR(recordingfile)=external-12-79602052318-20240824-132959-1724495399.10434.wav) + + +13:30:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: FORWARD_CONTEXT +Value: 1 +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal + + +13:30:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +13:30:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +13:30:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724495399.10439 +Linkedid: 17244 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +13:30:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10434 +Linkedid: 1724495389.10432 +DestChannel: PJSIP/12-0000128d +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724495399.10439 +DestLinkedid: 1724495389.10432 +DialStatus: ANSWER +BridgeUniqueid: b1dc06de-c798-4c40-a7cc-7e3d14268550 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPEER +Value: PJSIP/12-0000128d + + +13:30:07 + +Event: NewConnectedLine +Privilege: call,all +Exten: 194 +Context: ext-queues +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724495389.104 +Linkedid: 1724495389.10432 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000b14;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495399.10437 +DestLinkedid: 1724495389.10432 +DialStatus: CANCEL + + +13:30:07 + +Event: VarSet +Privilege: dialplan,all +Device: Local/12@from-queue +State: INUSE +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +DestChannel: PJSIP/13-0000128f +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724495399.10441 +DestLinkedid: 1724495389.10432 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 1 + + +13:30:07 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000b14;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724495399.10437 +Linkedid: 1724495389.10432 +DestChannel: Local/10@from-queue-00000b14;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495399.10437 +DestLinkedid: 1724495389.10432 +DialStatus: CANCEL +Variable: MACRO_PRIORITY +Value: 3 +Cause: 26 +Cause-txt: Answered elsewhere + + +13:30:07 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: MACRO_PRIORITY +Value: + + +13:30:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 + + +13:30:07 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/13-0000128f +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +DestChannel: PJSIP/10-0000128e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724495399.10440 +DestLinkedid: 1724495389.10432 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 8 +RingTime: 7 +Variable: DIALSTATUS +Value: CANCEL +Device: Local/10@from-queue +State: NOT_INUSE +BridgeUniqueid: 747be40b-3359-4a02-b335-457ceb363345 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL + + +13:30:07 + +Event: VarSet +Privilege: call,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 0 +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/10 +State: NOT_INUSE + + +13:30:07 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Variable: MACRO_PRIORITY +Value: +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:30:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b14;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: +Source: 79602052318 +Destination: 10 +DestinationContext: ext-local +CallerID: "79602052318" <79602052318> +DestinationChannel: PJSIP/10-0000128e +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724495399.10438 +UserField: + + +13:30:07 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b13;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Extension: s +Application: Hangup +AppData: +Device: PJSIP/13 +State: NOT_INUSE +Variable: MACRO_CONTEXT +Value: +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:30:07 + +Event: BridgeEnter +Privilege: call,all +BridgeUniqueid: 747be40b-3359-4a02-b335-457ceb363345 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: s +Priority: 4 +Uniqueid: 1724495399.10438 +Linkedid: 1724495389.10432 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: + + +13:30:07 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724495399.10436 +Linkedid: 1724495389.10432 +Variable: BRIDGEPEER +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10462 +Source: 79602052318 +Destination: 13 +DestinationContext: ext-local +CallerID: "79602052318" <79602052318> +DestinationChannel: PJSIP/13-0000128f +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724495399.10436 +UserField: + + +13:31:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b12;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:31:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000128d +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: b1dc06de-c798-4c40-a7cc-7e3d14268550 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +13:31:14 + +Event: BridgeLeave +Privilege: call,all +Channel: L +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602052318 +ConnectedLineName: 79602052318 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724495399.10439 +Linkedid: 1724495389.10432 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000151; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 343 +LastCall: 1724495474 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: b1dc06de-c798-4c40-a7cc-7e3d14268550 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:31:15 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Cause: 16 +DestChannel: Local/12@from-queue-00000b12;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602052318 +DestConnectedLineName: 79602052318 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495399.10433 +DestLinkedid: 1724495389.10432 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 8 +TalkTime: 67 +Reason: agent +Cause-txt: Normal Clearing +Source: 79602052318 +Destination: 12 +DestinationContext: ext-local +CallerID: "79602052318" <79602052318> +DestinationChannel: PJSIP/12-0000128d +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 74 +BillableSeconds: 67 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724495399.10434 +UserField: +Device: Local/12@from-queue +State: NOT_INUSE +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 747be40b-3359-4a02-b335-457ceb363345 +BridgeType: basic + + +13:31:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: 747be40b-3359-4a02-b335-457ceb363345 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: NOT_INUSE +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_CONTEXT +Value: ext-queues + + +13:31:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10464 + + +13:31:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Source: 79602052318 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79602052318" <79602052318> +DestinationChannel: Local/12@from-queue-00000b12;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 85 +BillableSeconds: 85 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724495389.10432 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10465 + + +13:31:15 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-0000128c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602052318 +CallerIDName: 79602052318 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724495389.10432 +Linkedid: 1724495389.10432 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Source: 79602052318 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79602052318" <79602052318> +DestinationChannel: Local/10@from-queue-00000b14;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 7 +BillableSeconds: 7 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724495389.10432 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10466 + + +13:35:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T13 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +13:35:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T13 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +13:39:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:39:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724495950.10442 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:39:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724495950. +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-133910 +Variable: __YEAR +Value: 2024 + + +13:39:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:39:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +13:39:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:39:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +13:39:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +13:39:10 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +13:39:10 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +13:39:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +13:39:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +13:39:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 2 +Application: AGI +AppData: agi + + +13:39:11 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +CommandId: 988983693 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +13:39:11 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +CommandId: 581832411 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +13:39:12 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +CommandId: 1571746013 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +13:39:12 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +CommandId: 1759579423 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +13:39:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.104 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +13:39:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001290 + + +13:39:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001290 + + +13:39:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +13:39:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: CDR(cnum)=79524882582 +Variable: MACRO_DEPTH +Value: 1 + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79524882582 + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001290)=TRUE + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724495950.10 +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +13:39:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +13:39:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +13:39:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +13:39:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 194 +Application: QueueLog +AppData: 194,1724495950.10442,NONE,DID,79217365096 + + +13:39:21 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:39:21 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495950.10 +Linkedid: 1724495950.10442 +Variable: QUEUEJOINTIME +Value: 1724495961 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724495961.10443 +Linkedid: 1724495950.10442 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724495961.10443 +Linkedid: 1724495950.10442 +Variable: __RINGINGSENT +Value: TRUE + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724495961.10443 +Linkedid: 1724495950.10442 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: __FROMQUEUEEXTEN +Value: 79524882582 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: __TIMESTR +Value: 20240824-133910 + + +13:39:21 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b15;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724495961.10443 +LocalOneLinkedid: 1724495950.10442 +LocalTwoChannel: Local/12@from-queue-00000b15;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524882582 +LocalTwoCallerIDName: 79524882582 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724495961.10444 +LocalTwoLinkedid: 1724495950.10442 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b15;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: en +DestAccountCode: + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495961.10445 +Linkedid: 1724495950.10442 +DestChannel: Local/12@from-queue-00000b15;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724495961.10443 +DestLinkedid: 1724495950.10442 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495961.10445 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495961.10445 +Linkedid: 1724495950.10442 +Variable: __DIRECTION +Value: + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001290 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: __MON_FMT +Value: wav + + +13:39:21 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b16;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724495961.10445 +LocalOneLinkedid: 1724495950.10442 +LocalTwoChannel: Local/13@from-queue-00000b16;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524882582 +LocalTwoCallerIDName: 79524882582 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724495961.10446 +LocalTwoLinkedid: 1724495950.10442 +LocalOptimization: No + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724495961.10447 +Linkedid: 1724495950.10442 +DestChannel: Local/13@from-queue-00000b16;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724495961.10445 +DestLinkedid: 1724495950.10442 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724495961.10447 +Linkedid: 1724495950.10442 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724495961.10447 +Linkedid: 1724495950.10442 +Variable: __DAY +Value: 24 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +13:39:21 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: __FROM_DID +Value: 79217365096 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: __FROMQ +Value: true +Extension: 194 +Application: Goto +AppData: 1?194,1 + + +13:39:21 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: DB_RESULT +Value: EXTENSION +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +LocalOneChannel: Local/10@from-queue-00000b17;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: __RINGTIMER +Value: 60 +DestChannel: Local/10@from-queue-00000b17;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724495961.10447 +DestLinkedid: 1724495950.10442 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +DialString: Local/10@from-queue/n + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724495961.10444 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7952 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000b15;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000b15;2 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000b15;2 +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 11 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: CALLERID(number)=79524882582 +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 2 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: 10 +Application: Set +AppData: __FROMQ=true +Variable: QAGENT +Value: 10 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: 10 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: ARG3 +Value: 0 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724495961.10448 +Linkedid: +Extension: s +Application: Set +AppData: CALLERID(number)=79524882582 +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724495 +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795248 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79524882582 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79524882582 and 12 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950. +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +13:39:21 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79524882582-20240824-133921-1724495961.10444 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79524882582 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795248 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79524882582 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79524882582 and 10 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950. +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +13:39:21 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79524882582-20240824-133921-1724495961.10448 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7952 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: dstring +Priority: 20 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79524882582 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724495961.10448 +Linkedid: 172449595 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: RINGTIME +Value: + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 7921736 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: __FROMQ +Value: true +Extension: 194 +Application: Goto +AppData: from-internal,13,1 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_EXTEN +Value: 13 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b16;2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000b16;2 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79524882582 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724495961.10445 +Linkedid: 1724495950.10442 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:39:21 + +Event: +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set + + +13:39:21 + +Event: Va +Privilege: dialplan,all +Channel: PJSIP/10-00001291 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495961.10449 +Linkedid: 1724495950.10442 +Variable: __KEEPCID +Value: TRUE +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001291 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495961.10449 +Linkedid: 1724495950.10442 +Variable: __YEAR +Value: 2024 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001291 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495961.10449 +Linkedid: 1724495950.10442 +Variable: __SIGNORE +Value: TRUE + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001291 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495961.10449 +Linkedid: 1724495950.10442 +Variable: __MOHCLASS +Value: + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001291 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724495961.10449 +Linkedid: 1724495950.10442 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: +AppData: __FROMEXTEN=79524882582 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: exten +Application: +AppData: 0?Set(CALLEE=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79524882582-20240824-133921-1724495961.10446 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000b16;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000b16;2 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +13:39:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +13:39:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +DestChannel: PJSIP/10-00001291 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724495961.10449 +DestLinkedid: 1724495950.10442 +DialString: 10/sip +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +DestChannel: Local/10@from-queue-00000b17;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495961.10447 +DestLinkedid: 1724495950.10442 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MA +Value: HhTtrM(auto-blkvm) + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:39:22 + +Event: VarSet +Privilege: di +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.1044 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-ho +Exten: s +Priority: 1 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: DIALEDTIME +Value: + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724495961.10446 +Linkedid: +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: dstring +Application: Set +AppData: DEVICES=13 +Variable: DEVICES +Value: 13 + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() +Variable: MACRO_DEPTH +Value: 2 + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +13:39:22 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +13:39:22 + +Event: Newchannel +Privilege: call,all +Channel: PJSIP/13-00001292 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: PROGRESSTIME_MS +Value: + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001292 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495961.10450 +Linkedid: 1724495950.1044 +Variable: __RINGTIMER +Value: 60 + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001292 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495961.10450 +Linkedid: 1724495950.10442 +Variable: __REVERSAL_REJECT +Value: FALSE + + +13:39:22 + +Event: Newext +Privilege: dialplan,all +Channel: PJSIP/13-00001292 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724495961.10450 +Linkedid: 1724495950.10442 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +13:39:22 + +Event: VarSet +Privilege: call,all +Channel: PJSIP/12-00001293 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495961.10451 +Linkedid: 1724495950.10442 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +13:39:22 + +Event: VarSet +Privilege: dia +Channel: PJSIP/12-00001293 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495961.10451 +Linkedid: 1724495950.10442 +Variable: __FROMEXTEN +Value: 79524882582 + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001293 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724495961.10451 +Linkedid: 1724495950.10442 +Variable: __FROMQ +Value: true + + +13:39:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001293 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-00001293 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 + + +13:39:22 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +DestChannel: Local/12@from-queue-00000b15;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495961.10445 +DestLinkedid: 1724495950.10442 +DialString: 13/sip +Device: Local/13@from-queue +State: INUSE +DialStatus: RINGING + + +13:39:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME +Value: 2 + + +13:39:23 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: RINGTIME_MS +Value: 2902 +DestChannel: Local/10@from-queue-00000b17;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495961.10447 +DestLinkedid: 1724495950.10442 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:39:24 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3684 +Device: PJSIP/12 +State: RINGING +DestChannel: Local/12@from-queue-00000b15;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495961.10443 +DestLinkedid: 1724495950.10442 +DialStatus: RINGING + + +13:39:24 + +Event: QueueMemberStatus +Privilege: agent,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 343 +LastCall: 1724495474 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:39:25 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 55 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 4173 +DestChannel: PJSIP/13-00001292 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724495961.10450 +DestLinkedid: 1724495950.10442 +DialStatus: RINGING +Hint: PJSIP/13&Custom +Status: 8 +StatusText: Ringing + + +13:39:25 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +DestChannel: Local/13@from-queue-00000b16;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495961.10445 +DestLinkedid: 1724495950.10442 +DialStatus: RINGING + + +13:39:31 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/12&Custom +Status: 1 +StatusText: InUse +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: DIALSTATUS +Value: ANSWER + + +13:39:31 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-00001293 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724495961.10451 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/12 +State: INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 343 +LastCall: 1724495474 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:39:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 172449595 +Linkedid: 1724495950.10442 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(CFIGNORE)= + + +13:39:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001293 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724495961.10451 +Linkedid: 1724495950.10442 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: blkvm-clr, + + +13:39:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001293 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: +Linkedid: 1724495950.10442 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +13:39:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001293 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724495961.10451 +Linkedid: 1724495950.10442 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_DEPTH +Value: 1 + + +13:39:31 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: MACRO_PRIORITY +Value: +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +DestChannel: Local/12@from-queue-00000b15;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: ru +DestAccountCode: +DestContext: fr +DestExten: s +DestPriority: 1 +DestUniqueid: 1724495961.10451 +DestLinkedid: 1724495950.10442 +DialStatus: ANSWER +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:39:31 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000b16;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724495961.10445 +Linkedid: 1724495950.10442 +DestChannel: Local/13@from-queue-00000b16;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495961.10445 +DestLinkedid: 1724495950.10442 +DialStatus: CANCEL +Device: Local/12@from-queue +State: INUSE +Cause: 26 +Cause-txt: Answered elsewhere + + +13:39:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:39:31 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000b17;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724495961.10447 +Linkedid: 1724495950.10442 +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: 36810080-20ef-48b7-a5be-874aff5715fc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:39:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 36810080-20ef-48b7-a5be-874aff5715fc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +DestChannel: Local/12@from-queue-00000b15;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524882582 +DestConnectedLineName: 79524882582 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724495961.10443 +DestLinkedid: 1724495950.10442 +DialStatus: CANCEL +Variable: DIALSTATUS +Value: CANCEL +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 10 +RingTime: 10 + + +13:39:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: 79524882582 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: ARG1 +Value: +BridgeUniqueid: ab3ef135-e970-46bd-b468-591d494a7afb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:39:31 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Variable: MACRO_IN_HANGUP +Value: 1 +Device: Local/10@from-queue +State: NOT_INUSE +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:39:31 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b17;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 10 +ConnectedLineName: Регистратур +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724495961.10451 +Linkedid: 1724495950.10442 +Variable: BRIDGEPEER +Value: Local/12@from-queue-00000b15;2 +BridgeUniqueid: 36810080-20ef-48b7-a5be-874aff5715fc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: s +Application: GotoIf +AppData: 1?theend + + +13:39:31 + +Event: Hangup +Privilege: call,all +Channel: Local/13@from-queue-00000b16;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524 +CallerIDName: 79524882582 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724495961.10446 +Linkedid: 1724495950.10442 +Variable: MACRO_PRIORITY +Value: +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: Hangup +AppData: + + +13:39:31 + +Event: Newexten +Privilege: dialplan,all +AccountCode: +Source: 79524882582 +Destination: 10 +DestinationContext: ext-local +CallerID: "79524882582" <79524882582> +Channel: Local/10@from-queue-00000b17;2 +DestinationChannel: PJSIP/10-00001291 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 10 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724495961.10448 +UserField: +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: ab3ef135-e970-46bd-b468-591d494a7afb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 10 +ConnectedLineName: +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724495961.10448 +Linkedid: 1724495950.10442 +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: MACRO_DEPTH +Value: 1 + + +13:39:31 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Variable: BRIDGEPVTCALLID +Value: SDife9f01-52fa6c3e936a69cf801f3e30a4f7ade9-v300g00 +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: ab3ef135-e970-46bd-b468-591d494a7afb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +13:39:31 + +Event: UserEvent +Privilege: user,all +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/10@FROM-QUEUE +ActionID: 10472 + + +13:40:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724495961.10451 +Linkedid: 1724495950.10442 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:40:11 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/12-00001293 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524882582 +ConnectedLineName: 79524882582 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724495961.10451 +Linkedid: 1724495950.10442 +Variable: BRIDGEPVTCALLID +Value: +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +BridgeUniqueid: 36810080-20ef-48b7-a5be-874aff5715fc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:40:12 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 36810080-20ef-48b7-a5be-874aff5715fc +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: DIALEDTIME_MS +Value: 50939 + + +13:40:12 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: MACRO_EXTEN +Value: 12 +Cause: 16 +Cause-txt: Normal Clearing + + +13:40:12 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/12 +State: NOT_INUSE +Channel: Local/12@from-queue-00000b15;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: ARG5 +Value: +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 344 +LastCall: 1724496011 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:40:12 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.1 +Variable: BRIDGEPEER +Value: +Cause: 16 +BridgeUniqueid: ab3ef135-e970-46bd-b468-591d494a7afb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing + + +13:40:12 + +Event: VarSet +Privilege: dialplan,a +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Cause: 16 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +13:40:12 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 12 +ConnectedLineName: Регистра +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724495950.10442 +Linkedid: 1724495950.10442 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 10 +TalkTime: 40 +Reason: agent +Device: Local/12@from-queue +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: + + +13:40:12 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001290 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524882582 +CallerIDName: 79524882582 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724495961.10444 +Linkedid: 1724495950.10442 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000535; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=079.419323; stdevtxmes=018.790040; +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: ab3ef135-e970-46bd-b468-591d494a7afb +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: NOT_INUSE +Source: 79524882582 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79524882582" <79524882582> +DestinationChannel: Local/13@fro + + +13:40:12 + +Event: Cdr +Privilege: cdr,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: Local/12@from-queue-00000b15;2 +ActionID: 10476 +AccountCode: +Source: 79524882582 +Destination: 12 +DestinationContext: ext-local +CallerID: "79524882582" <79524882582> +DestinationChannel: PJSIP/12-00001293 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 50 +BillableSeconds: 40 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724495961.10444 +UserField: + + +13:43:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:43:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724496215.10452 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:43:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724496215. +Linkedid: 1724496215.10452 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-134335 +Variable: __YEAR +Value: 2024 + + +13:43:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:43:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +13:43:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:43:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +13:43:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +13:43:35 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +13:43:35 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +13:43:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 14 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: __REVERSAL_REJECT +Value: FALSE + + +13:43:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: 2 +Application: AGI +AppData: agi + + +13:43:37 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +CommandId: 943636721 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +13:43:37 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +CommandId: 1768837810 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +13:43:37 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +CommandId: 1375380871 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +CommandId: 1052823899 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +13:43:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724496215.104 +Linkedid: 1724496215.10452 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724496215.10 +Linkedid: 1724496215.10452 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +13:43:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: AMPUSER +Value: 79524855607 +Extension: s +Application: Set +AppData: AMPUSER=79524855607 + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +13:43:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +13:43:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +13:43:37 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +13:43:37 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +13:43:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795248 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +13:43:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +13:43:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +13:43:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +13:43:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:43:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +13:43:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +13:43:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:43:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:43:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: + + +13:43:45 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-00001294 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724496215.10452 +Linkedid: 1724496215.10452 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10477 +Source: 79524855607 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79524855607" <79524855607> +DestinationChannel: +LastApplication: Playback +LastData: custom/Privet_23_08, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 + + +13:43:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: s +Application: GotoIf +AppData: 0?initialized +Variable: LOCAL(ARGC) +Value: 3 + + +13:43:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724496231.10453 +Linkedid: 1724 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +13:43:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:43:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG1) +Value: dontcare + + +13:43:51 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:43:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 +Variable: __FROM_DID +Value: 79217365096 + + +13:43:51 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +13:43:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 12 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +13:43:51 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Device: PJSIP/Megafon_3 +State: INUSE + + +13:43:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +13:43:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +13:43:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 2 +Application: AGI +AppData: agi + + +13:43:53 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +CommandId: 1972497941 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +13:43:53 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +CommandId: 2063176344 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +13:43:53 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +CommandId: 2117457448 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +13:43:53 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +CommandId: 1310367254 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +13:43:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.104 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +13:43:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-00001295 + + +13:43:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-00001295 + + +13:43:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +13:43:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: CDR(cnum)=79524855607 +Variable: MACRO_DEPTH +Value: 1 + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79524855607 + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-00001295)=TRUE + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724496231.10 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +13:43:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +13:43:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +13:43:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +13:43:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 194 +Application: QueueLog +AppData: 194,1724496231.10453,NONE,DID,79217365096 + + +13:44:02 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:44:02 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496231.10 +Linkedid: 1724496231.10453 +Variable: QUEUEJOINTIME +Value: 1724496242 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724496242.10454 +Linkedid: 1724496231.10453 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724496242.10454 +Linkedid: 1724496231.10453 +Variable: __RINGINGSENT +Value: TRUE + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724496242.10454 +Linkedid: 1724496231.10453 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: __FROMQUEUEEXTEN +Value: 79524855607 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: __TIMESTR +Value: 20240824-134351 + + +13:44:02 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b18;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724496242.10454 +LocalOneLinkedid: 1724496231.10453 +LocalTwoChannel: Local/12@from-queue-00000b18;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524855607 +LocalTwoCallerIDName: 79524855607 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724496242.10455 +LocalTwoLinkedid: 1724496231.10453 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b18;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: en +DestAccountCode: + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496242.10456 +Linkedid: 1724496231.10453 +DestChannel: Local/12@from-queue-00000b18;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724496242.10454 +DestLinkedid: 1724496231.10453 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496242.10456 +Linkedid: 1724 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496242.10456 +Linkedid: 1724496231.10453 +Variable: __MONTH +Value: 2024 +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: __RVOL_MODE +Value: dontcare + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: __REVERSAL_REJECT +Value: FALSE + + +13:44:02 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: __DIRECTION +Value: + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 4 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: 12 +Application: GotoIf +AppData: 1?194,1 +LocalOneChannel: Local/13@from-queue-00000b19;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724496242.10456 +LocalOneLinkedid: 1724496231.10453 +LocalTwoChannel: Local/13@from-queue-00000b19;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524855607 +LocalTwoCallerIDName: 79524855607 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724496242.10457 +LocalTwoLinkedid: 1724496231.10453 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000b19;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724496242.10456 +DestLinkedid: 1724496231.10453 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496242.10458 +Linkedid: 1724496231.10453 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496242.10458 +Linkedid: 1724496231.10453 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496242.10458 +Linkedid: 1724496231.10453 +Variable: __REC_STATUS +Value: INITIALIZED + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +Variable: __NODEST +Value: 194 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: __RINGINGSENT +Value: TRUE + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: __DIRECTION +Value: +Extension: 12 +Application: Set +AppData: __ + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 53 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGTIMER +Value: 60 +LocalOneChannel: Local/10@from-queue-00000b1a;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724496242.10458 +LocalOneLinkedid: 1724496231.10453 +LocalTwoChannel: Local/10@from-queue-00000b1a;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79524855607 +LocalTwoCallerIDName: 79524855607 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724496242.10459 +LocalTwoLinkedid: 1724496231.10453 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000b1a;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724496242.10458 +DestLinkedid: 1724496231.10453 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: 10 +Application: GotoIf +AppData: 0?hangup +Variable: MACRO_CONTEXT +Value: macro-exten-vm + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724496242.10455 +Variable: DB_RESULT +Value: EXTENSION + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: __RINGTIMER +Value: 60 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: TOUCH_MONITOR +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724496242.10459 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: AMPUSER=79524855607 +Variable: MACRO_DEPTH +Value: 2 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724496242.10459 +Linkedid: 1724 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79524855607 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: CDR(cnum)=79524855607 +Variable: MACRO_DEPTH +Value: 2 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795248 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79524855607 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79524855607 and 10 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231. +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +13:44:02 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79524855607-20240824-134402-1724496242.10459 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7952 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +13:44:02 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724496242.10459 +Linkedid: +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-di +Exten: s +Priority: 38 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALEDTIME +Value: + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: __EXTTOCALL +Value: 12 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001296 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496242.10460 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000b1a;2 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001296 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496242.10460 +Linkedid: 1724496231.10453 +Variable: __PICKUPMARK +Value: 10 + + +13:44:02 + +Event: Var +Privilege: dialplan,all +Channel: PJSIP/10-00001296 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496242.10460 +Linkedid: 1724496231.10453 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-00001295 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724496242.10460 +Linkedid: 1724496231.10453 +Variable: __DIRECTION +Value: +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00001296 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724496242.10460 +Linkedid: 1724496231.10453 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: 0 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 17 +Linkedid: 1724496231.10453 +Extension: 13 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +DestChannel: Local/10@from-queue-00000b1a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496242.10458 +DestLinkedid: 1724496231.10453 +DialString: 10/sip +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_ +Value: + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED +Variable: MACRO_DEPTH +Value: 1 + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: __FROMEXTEN=79524855607 +Variable: MACRO_DEPTH +Value: 1 + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:44:02 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +13:44:02 + +Event: Newexten +Privilege: dialp +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +13:44:02 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: __CALLFILENAME +Value: external-12-79524855607-20240824-134402-1724496242.10455 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79524855607-20240824-134402-1724496242.10455 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000b18;2 +Variable: MACRO_DEPTH +Value: 1 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: DB_RESULT +Value: 0 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +13:44:03 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG1 +Value: novm + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724496242.1045 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: __TTL=63 +Variable: __TTL +Value: 63 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: CDR(cnam)=79524855607 +Variable: MACRO_DEPTH +Value: 2 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: 1 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=12) + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:44:03 + +Event: VarSet +Privilege: dialpla +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +13:44:03 + +Event: Newexten +Privilege: +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724496242.10457 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: __FROMEXTEN=79524855607 +Variable: MACRO_DEPTH +Value: 1 + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-reco +Exten: recordcheck +Priority: 11 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79524855607-20240824-134402-1724496242.10457 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: ITER +Value: 1 +Extension: dstring +Application: Set +AppData: ITER=1 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: dstring +Application: ExecIf +AppData: 0 +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-13-79524855607-20240824-134402-1724496242.10457.wav + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/13@from-queue-00000b19;2 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Return +AppData: + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 14 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795248 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: PJSIP/12/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231. +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79524855607 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724496242.10457 +Linkedid: 1724496 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 172449 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_PRIOR +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 795 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: DIALEDPEERN +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001297 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496242.10461 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: __MON_FMT +Value: wav + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001297 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496242.10461 +Linkedid: 1724496231.10453 +Variable: __CALLEE_ACCOUNCODE +Value: + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001297 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496242.10461 +Linkedid: 1724496231.10453 +Variable: __FROMQUEUEEXTEN +Value: 79524855607 + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001297 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: TECH +Value: PJSIP + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: RINGTIME +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +13:44:03 + +Event: DialBegin +Privilege: call,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001298 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496242.10462 +Linkedid: 1724496231.10453 +DestChannel: Local/13@from-queue-00000b19;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496242.10456 +DestLinkedid: 1724496231.10453 +DialStatus: RINGING +Variable: __REC_STATUS +Value: RECORDING + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001298 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496242.10462 +Linkedid: 1724496231.10453 +Variable: __DAY +Value: 24 + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001298 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496242.10462 +Linkedid: 1724496231.10453 +Variable: __QCONTEXT +Value: 0 + + +13:44:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001298 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724496242.10462 +Linkedid: 1724496231.10453 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppD + + +13:44:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001298 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 17244962 +Linkedid: 1724496231.10453 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +13:44:03 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +Device: Local/12@from-queue +State: INUSE +DestChannel: Local/12@from-queue-00000b18;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724496242.10462 +DestLinkedid: 1724496231.10453 +DialString: 12/sip + + +13:44:03 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T13 +Severity: Informational +Service: AMI +EventVersion: 1 +AccountID: admin +SessionID: 0x7f877c001530 +LocalAddress: IPV4/TCP/0.0.0.0/5038 +RemoteAddress: IPV4/TCP/127.0.0.1/40062 +UsingPassword: 0 +SessionTV: 2024-08-24T13 + + +13:44:05 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3144 +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing + + +13:44:05 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +DestChannel: Local/10@from-queue-00000b1a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496242.10458 +DestLinkedid: 1724496231.10453 +DialStatus: RINGING + + +13:44:06 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME +Value: 3 + + +13:44:06 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/12 +State: RINGING +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +DestChannel: Local/12@from-queue-00000b18;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496242.10454 +DestLinkedid: 1724496231.10453 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 344 +LastCall: 1724496011 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:44:06 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 4401 +DestChannel: Local/13@from-queue-00000b19;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496242.10456 +DestLinkedid: 1724496231.10453 +DialStatus: RINGING + + +13:44:06 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/13 +State: RINGING +Exten: 13 +Context: ext-local +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001298 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724496242.10462 +Linkedid: 1724496231.10453 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Hint: PJSIP/12&Custom +Status: 1 +StatusText: InUse +Extension: s +Application: Macro +AppData: auto-blkvm + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001298 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 2 +Uniqueid: 1724496242.10462 +Linkedid: 1724496231.10453 +Variable: MACRO_D +Value: +Device: PJSIP/12 +State: INUSE +Extension: s +Application: Set +AppData: __MACRO_RESULT= +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 344 +LastCall: 1724496011 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:44:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001298 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724496242.10462 +Linkedid: 1724496231.10453 +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +13:44:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001298 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724496242.10462 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001298 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724496242.10462 +Linkedid: 1724496231.10453 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +13:44:09 + +Event: DialEnd +Privilege: call,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/12-00001298 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724496242.10462 +DestLinkedid: 1724496231.10453 + + +13:44:09 + +Event: NewCallerid +Privilege: call,all +Channel: Local/12@from-queue-00000b18;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724496242.10454 +Linkedid: 1724496231.10453 +BridgeUniqueid: 12b9020a-b28d-4d14-97bd-9c11fa017ca8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: s +Application: AppDial +AppData: (Outgoing Line) +Device: Local/12@from-queue +State: INUSE +Variable: BRIDGEPVTCALLID +Value: c0c85e3d-0463-4216-b6aa-c7b2f3aeb7de + + +13:44:09 + +Event: HangupRequest +Privilege: call,all +Channel: Local/13@from-queue-00000b19;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +DestChannel: Local/13@from-queue-00000b19;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496242.10456 +DestLinkedid: 1724496231.10453 +DialStatus: CANCEL +Device: Local/12@from-queue +State: INUSE + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496231.10 +Linkedid: 1724496231.10453 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000b1a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496242.10458 +DestLinkedid: 1724496231.10453 +DialStatus: CANCEL +Device: Local/10@from-queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +DestChannel: PJSIP/13-00001297 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724496242.10461 +DestLinkedid: 1724496231.10453 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 7 +RingTime: 6 +BridgeUniqueid: 65cefc8e-710d-4b73-9084-abbe45981ed3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL +Variable: ARG3 +Value: 0 + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: MACRO_EXTEN +Value: + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: ARG3 +Value: 0 +DestChannel: PJSIP/10-00001296 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724496242.10460 +DestLinkedid: 1724496231.10453 +DialStatus: CANCEL + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: MACRO_EXTEN +Value: + + +13:44:09 + +Event: VarSet +Privilege: dialplan +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Variable: ARG1 +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:44:09 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-00001296 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724496242.10460 +Linkedid: 1724496231.10453 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 65cefc8e-710d-4b73-9084-abbe45981ed3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/10 +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: Local/13@from-queue-00000b19;2 +ActionID: 10479 +AccountCode: +Source: 79524855607 +Destination: 13 +DestinationContext: ext-local +CallerID: "79524855607" <79524855607> +DestinationChannel: PJSIP/13-00001297 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724496242.10457 +UserField: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496242.10457 +Linkedid: 1724496231.10453 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_CONTEXT + + +13:44:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496242.10459 +Linkedid: 1724496231.10453 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10482 +Source: 79524855607 +Destination: 10 +DestinationContext: ext-local +CallerID: "79524855607" <79524855607> +DestinationChannel: PJSIP/10-00001296 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 6 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724496242.10459 +UserField: +Extension: s +Application: Hangup +AppData: +Variable: MACRO_EXTEN + + +13:44:09 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: BRIDGEPEER +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/10@from-queue +State: NOT_INUSE +BridgeUniqueid: 65cefc8e-710d-4b73-9084-abbe45981ed3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10483 + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724496242.10454 +Linkedid: 1724496231.10453 +Variable: BRIDGEPEER +Value: + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 65cefc8e-710d-4b73-9084-abbe45981ed3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: 1 + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10454 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +DestChannel: Local/12@from-queue-00000b18;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79524855607 +DestConnectedLineName: 79524855607 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496242.10454 +DestLinkedid: 1724496231.10453 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 7 +TalkTime: 13 +Reason: caller +BridgeUniqueid: 65cefc8e-710d-4b73-9084-abbe45981ed3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 12b9020a-b28d-4d14-97bd-9c11fa017ca8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: ARG3 +Value: + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000129 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79524855607 +ConnectedLineName: 79524855607 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724496242.10462 +Linkedid: 1724496231.10453 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001375;avgrxjitter=000.000859;stdevrxjitter=000.000150;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 12b9020a-b28d-4d14-97bd-9c11fa017ca8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Variable: RTPAUDIOQOSMES +Value: 1 +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Cause: 16 +Cause-txt: Normal Clearing +BridgeUniqueid: 12b9020a-b28d-4d14-97bd-9c11fa017ca8 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 345 +LastCall: 1724496262 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10485 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00001295 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496231.10453 +Linkedid: 1724496231.10453 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=0 + + +13:44:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b18;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 3 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79524855607 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79524855607" <79524855607> +DestinationChannel: Local/10@from-queue-00000b1a;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 6 +BillableSeconds: 6 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724496231.10453 +UserField: +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10486 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +13:44:22 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524855607 +CallerIDName: 79524855607 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724496242.10455 +Linkedid: 1724496231.10453 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79524855607 +Destination: 12 +DestinationContext: ext-local +CallerID: "79524855607" <79524855607> +DestinationChannel: PJSIP/12-00001298 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 20 +BillableSeconds: 13 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724496242.10455 +UserField: +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10487 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602005049 +Priority: 1 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724496426.1 +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-00001299 + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:47:07 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496426.10463 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602005049 +Priority: 2 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989602005049 +Application: Gosub +AppData: sub-record-check,s,1(out,989602005049,dontcare) + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724496426.10463 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724496426.10463 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: __CALLFILENAME +Value: out-989602005049-13-20240824-134707-1724496426.10463 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989602005049-13-20240824-134707-1724496426.10463 + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989602005049-13-20240824-134707-1724496426.10463.wav + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602005049 +Priority: 7 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426. +Variable: MOHCLASS +Value: default +Extension: 989602005049 +Application: Set +AppData: MOHCLASS=default + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602005049 +Priority: 11 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_EXTEN +Value: 989602005049 +Extension: 989602005049 +Application: Macro +AppData: dialout-trunk,6,+79602005049,,off + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) +Variable: DB_RESULT +Value: + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79602005049 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79602005049 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79602005049) + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Extension: s +Application: Dial +AppData: PJSIP/+79602005049@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79602005049^989602005049^6^1724496427^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: PROGRESSTIME +Value: + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496427.10464 +Linkedid: 1724496426.10463 +Variable: __REC_STATUS +Value: RECORDING + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496427.10464 +Linkedid: 1724496426.10463 +Variable: __DAY +Value: 24 + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602005049 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724496427.10464 +Linkedid: 1724496426.10463 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:47:07 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602005049 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724496427.10464 +Linkedid: 1724496426.10463 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:47:07 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602005049 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724496427.1 +Linkedid: 1724496426.10463 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:47:07 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-0000129a +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989602005049 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724496427.10464 +DestLinkedid: 1724496426.10463 +DialString: +79602005049@rt_769402 + + +13:47:07 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Extension: 989602005049 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Variable: RINGTIME_MS +Value: 331 +DestChannel: PJSIP/rt_769402-0000129a +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989602005049 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989602005049 +DestPriority: 1 +DestUniqueid: 1724496427.10464 +DestLinkedid: 1724496426.10463 +DialStatus: RINGING +Device: PJSIP/13 +State: INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:47:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: PROGRESSTIME_MS +Value: 4494 + + +13:47:16 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989602005049 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602005049 +Priority: 1 +Uniqueid: 1724496427.10464 +Linkedid: 1724496426.10463 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7a07f8a6 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496436.733889 +SentRTP: 1724536424 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x92132d69 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 960 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:47:21 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989602005049 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602005049 +Priority: 1 +Uniqueid: 1724496427.10464 +Linkedid: 1724496426.10463 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7a07f8a6 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496441.733503 +SentRTP: 1724576424 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x92132d69 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 1210 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:47:26 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989602005049 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602005049 +Priority: 1 +Uniqueid: 1724496427.10464 +Linkedid: 1724496426.10463 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7a07f8a6 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496446.734902 +SentRTP: 1724616424 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x92132d69 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 1460 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:47:31 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989602005049 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602005049 +Priority: 1 +Uniqueid: 1724496427.10464 +Linkedid: 1724496426.10463 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7a07f8a6 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496451.733695 +SentRTP: 1724656264 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0x92132d69 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 1710 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:47:41 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989602005049 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602005049 +Priority: 1 +Uniqueid: 1724496427.10464 +Linkedid: 1724496426.10463 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x7a07f8a6 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496461.733151 +SentRTP: 1724736424 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0x92132d69 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 2210 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:47:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000154; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 127 +DestChannel: PJSIP/rt_769402-0000129a +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989602005049 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989602005049 +DestPriority: 1 +DestUniqueid: 1724496427.10464 +DestLinkedid: 1724496426.10463 +DialStatus: CANCEL + + +13:47:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-0000129a +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989602005049 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602005049 +Priority: 1 +Uniqueid: 1724496427.10464 +Linkedid: 1724496426.10463 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.00000 + + +13:47:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Cause-txt: Interworking, unspecified +Device: PJSIP/rt_769402 +State: NOT_INUSE +Extension: h +Application: Macro +AppData: hangupcall + + +13:47:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: MACRO_DEPTH +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10488 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Source: 78162769402 +Destination: 989602005049 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-0000129a +LastApplication: Dial +LastData: PJSIP/+79602005049@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 35 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724496426.10463 +UserField: +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +13:47:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001299 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.0000 + + +13:47:42 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/13 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602005049 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724496426.10463 +Linkedid: 1724496426.10463 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10489 + + +13:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724496502.10465 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +13:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724496502. +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-134822 +Variable: __YEAR +Value: 2024 + + +13:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +13:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:48:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +13:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +13:48:22 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +13:48:22 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +13:48:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +13:48:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 22 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(num-pres)=allowed_not_screened + + +13:48:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 2 +Application: AGI +AppData: agi + + +13:48:24 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +CommandId: 53110223 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +13:48:24 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +CommandId: 1941751608 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +13:48:24 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +CommandId: 1377617430 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +13:48:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +CommandId: 1946993361 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +13:48:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724496502.104 +Linkedid: 1724496502.10465 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +13:48:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724496502.10 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +13:48:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: AMPUSER +Value: 79633338027 +Extension: s +Application: Set +AppData: AMPUSER=79633338027 + + +13:48:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +13:48:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 796 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +13:48:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +13:48:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +13:48:24 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +13:48:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +13:48:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +13:48:24 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +13:48:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +13:48:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 796333 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +13:48:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +13:48:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +13:48:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +13:48:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +13:48:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +13:48:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:48:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +13:48:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 47 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 194 +Application: ExecIf +AppData: 0?Set(__MOHCLASS= +Variable: VQ_MOH +Value: + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 194 +Application: +AppData: QUEUEJOINTIME=1724496513 +Variable: QUEUEJOINTIME +Value: 1724496513 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Device: Queue +State: RINGING +Channel: Local/12@from-queue-00000b1b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724496513.10466 +Linkedid: 1724496502.10465 +Queue: 194 +Position: 1 +Count: 1 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RVOL_MODE +Value: dontcare + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724496513.10466 +Linkedid: 1724496502.10465 +Variable: __REVERSAL_REJECT +Value: FALSE + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;1 +ChannelState: 0 +ChannelStateDesc: Dow +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724496513.10466 +Linkedid: 1724496502.10465 +Variable: __DIRECTION +Value: + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000129b + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b1b;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724496513.10466 +LocalOneLinkedid: 1724496502.10465 +LocalTwoChannel: Local/12@from-queue-00000b1b;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79633338027 +LocalTwoCallerIDName: 79633338027 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724496513.10467 +LocalTwoLinkedid: 1724496502.10465 +LocalOptimization: No + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 4 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +DestChannel: Local/12@from-queue-00000b1b;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724496513.10466 +DestLinkedid: 1724496502.10465 +DialString: Local/12@from-queue/n +Extension: 12 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: DB_RESULT +Value: 0 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496513.10468 +Linkedid: 1724496502.10465 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000129b +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496513.10468 +Linkedid: 1724496502.10465 +Variable: __MON_FMT +Value: wav + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724496502.10465 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724496513.10467 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: __QCONTEXT +Value: 0 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: __TTL +Value: 64 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 7 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: __FROM_DID +Value: 79217365096 +Extension: s +Application: Set +AppData: CALLERID(number)=79633338027 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: AMPUSER=79633338027 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +LocalOneChannel: Local/13@from-queue-00000b1c;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724496513.10468 +LocalOneLinkedid: 1724496502.10465 +LocalTwoChannel: Local/13@from-queue-00000b1c;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79633338027 +LocalTwoCallerIDName: 79633338027 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724496513.10469 +LocalTwoLinkedid: 1724496502.10465 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000b1c;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724496513.10468 +DestLinkedid: 1724496502.10465 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496513.10470 +Linkedid: 1724496502.10465 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-0000129b + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496513.10470 +Linkedid: 1724496502.10465 +Variable: __FROM_DID +Value: 79217365096 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496513.10470 +Linkedid: 1724496502.10465 +Variable: __DIRECTION +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: __SIGNORE +Value: TRUE +Extension: s +Application: GotoIf +AppData: 1?report2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: __FROMQUEUEEXTEN +Value: 79633338027 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: __MOHCLASS +Value: +Extension: s +Application: Set +AppData: __TTL=63 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: __DAY +Value: 24 +Extension: s +Application: GotoIf +AppData: 1?continue + + +13:48:33 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b1d;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79633338027 +DestChannel: Local/10@from-queue-00000b1d;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724496513.10470 +DestLinkedid: 1724496502.10465 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7963333802 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79633338027 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79633338027 and 12 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: exten +Priority: 11 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: LOCAL(ARG3) +Value: 12 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 3 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: 13 +Application: GotoIf +AppData: 0?hangup + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordc +Priority: 16 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 2 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: 10 +Application: Set +AppData: __FROMQ=true +Variable: QAGENT +Value: 10 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 2 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: DB_RESULT +Value: EXTENSION +Extension: 13 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_EXTEN +Value: 13 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: ARG4 +Value: 0 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: CHANCONTEXT +Value: from-queue-00000b1d;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b1d;2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724496513.1 +Linkedid: 1724496502.10465 +Variable: CHANEXTENCONTEXT +Value: 10@from-queue-00000b1d;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000b1d;2 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: +Priority: 6 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79633338027 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000b1d;2 +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DE +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: AMPUSER +Value: 79633338027 +Extension: s +Application: Set +AppData: AMPUSER=79633338027 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502. +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: CDR(cnum)=79633338027 +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 +Variable: MACRO_DEPTH +Value: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +13:48:33 + +Event: Newext +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502. +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-134833 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79633338027 and 13 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724 +Linkedid: 1724496502.10465 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79633338027-2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DE +Value: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79633338027) +Variable: MACRO_DEPTH +Value: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: CDR(cnam)=79633338027 +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: exten +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Return +AppData: + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724496513.10467 +Linkedid: 172449650 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 7963333802 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: dstring +Application: Set +AppData: ITER=1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: GOSUB_RETV +Value: +Extension: ctset +Application: Return +AppData: + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:48:33 + +Event: Newexten +Privilege: dialp +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7963333 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79633338027 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 +Variable: MACRO_DEPTH +Value: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: s +Priority: 17 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 792173 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPT +Value: 2 + + +13:48:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: MACRO_DEPTH +Value: 2 + + +13:48:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 172449651 +Linkedid: 1724496502.10465 +Variable: ITER +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/13)=79633338027 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: +Value: 2 + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 796333 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: RINGTIME +Value: + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: PROGRESSTIME +Value: + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.1046 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: __TIMESTR +Value: 20240824-134833 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-134833 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 17244965 +Linkedid: 1724496502.10465 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: LOCAL(ARG3) +Value: 10 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: __REC_POLICY +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79633338027) + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79633338027-20240824-134833-1724496513.10471.wav + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +13:48:34 + +Event: Newexten +Privilege: dialplan,a +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: dstring +Priority: 1 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +13:48:34 + +Event: Var +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724496513.10471 +Linkedid: 17 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial- +Exten: s +Priority: 38 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:48:34 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALEDTIME +Value: + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000129c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: __REC_STATUS +Value: RECORDING + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000129c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.1046 +Variable: __DAY +Value: 24 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000129c +ChannelState: 0 +ChannelStateDesc: Dow +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: __NODEST +Value: 194 + + +13:48:34 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-0000129c +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSI +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496513.10473 +Linkedid: 1724496502.10465 +Extension: s +Application: Return +AppData: +Variable: __RECORD_ID +Value: Local/13@from-queue-00000b1c;2 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496513.10473 +Linkedid: 1724496502.10465 +Variable: __PICKUPMARK +Value: 13 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 17244965 +Linkedid: 1724496502.10465 +Variable: __NODEST +Value: 194 + + +13:48:34 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-0000129d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724496513.10473 +Linkedid: 1724496502.10465 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129d +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 4 +Uniqueid: 1724496513.10473 +Linkedid: 1724496502.10465 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +13:48:34 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/12@from-queue-00000b1b;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496513.10466 +DestLinkedid: 1724496502.10465 +DialString: 12/sip +Device: Local/12@from-queue +State: INUSE +DialStatus: RINGING + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000129e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496513.10474 +Linkedid: 1724496502.10465 +DestChannel: Local/13@from-queue-00000b1c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496513.10468 +DestLinkedid: 1724496502.10465 +DialString: 13/sip +Device: Local/13@from-queue +State: INUSE +DialStatus: RINGING +Variable: __CWIGNORE +Value: TRUE + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-00 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496513.10474 +Linkedid: 1724496502.10465 +Variable: __MONTH +Value: 08 + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000129e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496513.10474 +Linkedid: 1724496502.10465 +Variable: __RVOL_MODE +Value: dontcare + + +13:48:34 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000129e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496513.10474 +Linkedid: 1724496502.10465 +Variable: __FROM_DID +Value: 79217365096 + + +13:48:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-0000129e +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724496513.10474 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +13:48:34 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/10-0000129e +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724496513.10474 +DestLinkedid: 1724496502.10465 +DialString: 10/sip +Device: Local/10@from-queue +State: INUSE + + +13:48:36 + +Event: DialState +Privilege: call,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 3157 +DestChannel: PJSIP/12-0000129c +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724496513.10472 +DestLinkedid: 1724496502.10465 +DialStatus: RINGING + + +13:48:36 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 345 +LastCall: 1724496262 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +DestChannel: Local/12@from-queue-00000b1b;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496513.10466 +DestLinkedid: 1724496502.10465 +DialStatus: RINGING + + +13:48:37 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3752 +DestChannel: Local/10@from-queue-00000b1d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496513.10470 +DestLinkedid: +DialStatus: RINGING +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:48:37 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 4037 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: PJSIP/13-0000129d +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724496513.10473 +DestLinkedid: 1724496502.10465 +DialStatus: RINGING + + +13:48:37 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-0000129c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: MACRO_PRIORITY +Value: 1 +Device: PJSIP/12 +State: INUSE +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 345 +LastCall: 1724496262 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:48:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000129c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 796333 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: CFIGNORE +Value: +Extension: s +Application: Set +AppData: CFIGNORE= + + +13:48:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000129c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +13:48:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000129c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-0000129b)= + + +13:48:38 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000129c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=12/sip + + +13:48:38 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-0000129c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 172 +Linkedid: 1724496502.10465 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/12-0000129c +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724496513.10472 +DestLinkedid: 1724496502.10465 +DialStatus: ANSWER +BridgeUniqueid: 207a46a8-721a-4fe9-9a5a-42087589a7f0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: INUSE + + +13:48:38 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: 207a46a8-721a-4fe9-9a5a-42087589a7f0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: BRIDGEPVTCALLID +Value: c016f67c-5d19-48b8-91ba-9f04379417ad +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/12@from-queue-00000b1b;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496513.10466 +DestLinkedid: + + +13:48:38 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724496513.10468 +Linkedid: 1724496502.10465 +DestChannel: Local/13@from-queue-00000b1c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496513.10468 +DestLinkedid: 1724496502.10465 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:48:38 + +Event: DialEnd +Privilege: call,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +DestChannel: PJSIP/10-0000129e +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496513.10470 +DestLinkedid: 1724496502.10465 +DialStatus: CANCEL +Cause: 26 +Variable: MACRO_DEPTH +Value: 1 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:48:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 0 + + +13:48:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Cause-txt: Answered elsewhere + + +13:48:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: GotoIf +AppData: 1?theend + + +13:48:38 + +Event: AgentConnect +Privilege: agent,all +Device: Queue +State: NOT_INUSE +Exten: 194 +Context: ext-queues +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Priority: 53 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 + + +13:48:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: ARG1 +Value: + + +13:48:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:48:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_DEPTH +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10493 +Source: 79633338027 +Destination: 10 +DestinationContext: ext-local +CallerID: "79633338027" <79633338027> +DestinationChannel: PJSIP/10-0000129e +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 4 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724496513.10471 +UserField: +Extension: s +Application: GotoIf +AppData: 1?theend + + +13:48:38 + +Event: BridgeEnter +Privilege: call,all +Device: Local/10@from-queue +State: NOT_INUSE +Channel: Local/10@from-queue-00000b1d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724496513.10471 +Linkedid: 1724496502.10465 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: 234a0cec-f584-4a0d-a011-d6644a6f0554 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause: 26 +Cause-txt: Answered elsewhere + + +13:48:38 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 234a0cec-f584-4a0d-a011-d6644a6f0554 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: + + +13:48:38 + +Event: Cdr +Privilege: cdr,all +Channel: Local/13@from-queue-00000b1c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724496513.10469 +Linkedid: 1724496502.10465 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10495 +Source: 79633338027 +Destination: 13 +DestinationContext: ext-local +CallerID: "79633338027" <79633338027> +DestinationChannel: PJSIP/13-0000129d +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 4 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724496513.10469 +UserField: + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602066108 +Priority: 1 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724496564.1 +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-0000129f + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:49:24 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496564.10475 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602066108 +Priority: 2 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989602066108 +Application: Gosub +AppData: sub-record-check,s,1(out,989602066108,dontcare) + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724496564.10475 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724496564.10475 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: __CALLFILENAME +Value: out-989602066108-13-20240824-134924-1724496564.10475 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989602066108-13-20240824-134924-1724496564.10475 + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989602066108-13-20240824-134924-1724496564.10475.wav + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602066108 +Priority: 7 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564. +Variable: MOHCLASS +Value: default +Extension: 989602066108 +Application: Set +AppData: MOHCLASS=default + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989602066108 +Priority: 11 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_EXTEN +Value: 989602066108 +Extension: 989602066108 +Application: Macro +AppData: dialout-trunk,6,+79602066108,,off + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) +Variable: DB_RESULT +Value: + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79602066108 + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79602066108 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79602066108) + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Extension: s +Application: Dial +AppData: PJSIP/+79602066108@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79602066108^989602066108^6^1724496564^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: PROGRESSTIME +Value: + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +Variable: __REC_STATUS +Value: RECORDING + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +Variable: __DAY +Value: 24 + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:49:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:49:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724496564.1 +Linkedid: 1724496564.10475 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:49:24 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000012a0 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989602066108 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724496564.10476 +DestLinkedid: 1724496564.10475 +DialString: +79602066108@rt_769402 + + +13:49:24 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/rt_769402 +State: RINGING + + +13:49:24 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 28 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: RINGTIME_MS +Value: 496 +DestChannel: PJSIP/rt_769402-000012a0 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989602066108 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989602066108 +DestPriority: 1 +DestUniqueid: 1724496564.10476 +DestLinkedid: 1724496564.10475 +DialStatus: RINGING +Device: PJSIP/13 +State: INUSE +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:49:26 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:49:26 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 207a46a8-721a-4fe9-9a5a-42087589a7f0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:49:26 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 207a46a8-721a-4fe9-9a5a-42087589a7f0 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/12-0000129c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: DIALSTATUS +Value: ANSWER +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +13:49:26 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-0000129c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724496513.10472 +Linkedid: 1724496502.10465 +Variable: MACRO_EXTEN +Value: 12 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/ + + +13:49:26 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/12@from-queue-00000b1b;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Variable: ARG5 +Value: + + +13:49:26 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/12@from-queue-00000b1b;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79633338027 +ConnectedLineName: 79633338027 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724496513.10466 +Linkedid: 1724496502.10465 +Cause: 16 +DestChannel: Local/12@from-queue-00000b1b;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79633338027 +DestConnectedLineName: 79633338027 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724496513.10466 +DestLinkedid: 1724496502.10465 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 4 +TalkTime: 49 +Reason: agent +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10496 +Variable: BRIDGEPEER +BridgeUniqueid: 234a0cec-f584-4a0d-a011-d6644a6f0554 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing + + +13:49:26 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 234a0cec-f584-4a0d-a011-d6644a6f0554 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +13:49:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 12 +ConnectedLineName: Регистратур +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_DEPTH +Value: 0 +Source: 79633338027 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79633338027" <79633338027> +DestinationChannel: Local/13@from-queue-00000b1c;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 4 +BillableSeconds: 4 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724496502.10465 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10497 + + +13:49:26 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/Megafon_3-0000129b +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496502.10465 +Linkedid: 1724496502.10465 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000154; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=079.919596; stdevtxmes=018.066438; + + +13:49:26 + +Event: UserEvent +Privilege: user,all +Device: Local/12@from-queue +State: NOT_INUSE +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79633338027 +CallerIDName: 79633338027 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724496513.10467 +Linkedid: 1724496502.10465 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79633338027 +Destination: 12 +DestinationContext: ext-local +CallerID: "79633338027" <79633338027> +DestinationChannel: PJSIP/12-0000129c +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 53 +BillableSeconds: 48 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724496513.10467 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10499 + + +13:49:28 + +Event: DialState +Privilege: call,all +Channel: PJSIP/13-0000129f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: PROGRESSTIME_MS +Value: 3944 +DestChannel: PJSIP/rt_769402-000012a0 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989602066108 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989602066108 +DestPriority: 1 +DestUniqueid: 1724496564.10476 +DestLinkedid: 1724496564.10475 +DialStatus: PROGRESS + + +13:49:33 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602066108 +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3087b2b5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496573.294054 +SentRTP: 1724536408 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x712d7e04 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 64352 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:49:38 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602066108 +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3087b2b5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496578.292885 +SentRTP: 1724576568 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x712d7e04 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 64602 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:49:43 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602066108 +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3087b2b5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496583.293697 +SentRTP: 1724616408 +SentPackets: 750 +SentOctets: 120000 +Report0SourceSSRC: 0x712d7e04 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 64852 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:49:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989602066108 +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +13:49:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +13:49:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +Variable: BRIDGEPEER +Value: PJSIP/13-0000129f +DestChannel: PJSIP/rt_769402-000012a0 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989602066108 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724496564.10476 +DestLinkedid: 1724496564.10475 +DialStatus: ANSWER +BridgeUniqueid: 16af8967-399a-4022-8b0e-b1b16dc6e480 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +13:49:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: BRIDGEPVTCALLID +Value: cc3c4e06-b0d6-40a2-a2a4-fc14cd15b192 + + +13:49:48 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3087b2b5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496588.293621 +SentRTP: 1724656408 +SentPackets: 1000 +SentOctets: 160000 +Report0SourceSSRC: 0x712d7e04 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 65103 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:49:53 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3087b2b5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496593.292188 +SentRTP: 1724696568 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0x712d7e04 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 65352 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724496593.1 +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12-000012a1 + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=12 + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: DB_RESULT +Value: 12 + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:49:53 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=12 + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496593.10477 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116387210 +Priority: 2 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989116387210 +Application: Gosub +AppData: sub-record-check,s,1(out,989116387210,dontcare) + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724496593.10477 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724496593.10477 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: __CALLFILENAME +Value: out-989116387210-12-20240824-134953-1724496593.10477 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116387210-12-20240824-134953-1724496593.10477 + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989116387210-12-20240824-134953-1724496593.10477.wav + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116387210 +Priority: 7 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593. +Variable: MOHCLASS +Value: default +Extension: 989116387210 +Application: Set +AppData: MOHCLASS=default + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116387210 +Priority: 11 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_EXTEN +Value: 989116387210 +Extension: 989116387210 +Application: Macro +AppData: dialout-trunk,6,+79116387210,,off + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=12) +Variable: DB_RESULT +Value: + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:49:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:49:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:49:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:49:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:49:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:49:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79116387210 + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79116387210 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79116387210) + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Extension: s +Application: Dial +AppData: PJSIP/+79116387210@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116387210^989116387210^6^1724496593^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: PROGRESSTIME +Value: + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +Variable: __REC_STATUS +Value: RECORDING + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +Variable: __DAY +Value: 24 + + +13:49:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:49:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:49:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724496593.1 +Linkedid: 1724496593.10477 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:49:54 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000012a2 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116387210 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724496593.10478 +DestLinkedid: 1724496593.10477 +DialString: +79116387210@rt_769402 + + +13:49:54 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Extension: 989116387210 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: INUSE +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Variable: RINGTIME_MS +Value: 340 +DestChannel: PJSIP/rt_769402-000012a2 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116387210 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116387210 +DestPriority: 1 +DestUniqueid: 1724496593.10478 +DestLinkedid: 1724496593.10477 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:49:58 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-000012a1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: PROGRESSTIME_MS +Value: 4287 +DestChannel: PJSIP/rt_769402-000012a2 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116387210 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116387210 +DestPriority: 1 +DestUniqueid: 1724496593.10478 +DestLinkedid: 1724496593.10477 +DialStatus: PROGRESS + + +13:50:03 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x3087b2b5 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496603.292047 +SentRTP: 1724776568 +SentPackets: 1751 +SentOctets: 280160 +Report0SourceSSRC: 0x712d7e04 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 316 +Report0SequenceNumberCycles: 1 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:50:03 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116387210 +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x07c4de0c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496603.323297 +SentRTP: 1724536592 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x731c08c5 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 25628 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:50:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:50:03 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/13-0000129f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 16af8967-399a-4022-8b0e-b1b16dc6e480 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:50:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_EXTEN +Value: + + +13:50:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +13:50:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989602066108 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496564.10476 +Linkedid: 1724496564.10475 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.3672 +BridgeUniqueid: 16af8967-399a-4022-8b0e-b1b16dc6e480 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:50:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0000129f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Source: 78162769402 +Destination: 989602066108 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000012a0 +LastApplication: Dial +LastData: PJSIP/+79602066108@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 39 +BillableSeconds: 16 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724496564.10475 +UserField: +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10500 +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Variable: MACRO_CONTEXT +Device: PJSIP/rt_769402 +State: RINGING + + +13:50:03 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-0000129f +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989602066108 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724496564.10475 +Linkedid: 1724496564.10475 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000181; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:50:03 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/13 +ActionID: 10501 + + +13:50:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116387210 +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +13:50:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +13:50:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +Variable: BRIDGEPEER +Value: PJSIP/12-000012a1 +DestChannel: PJSIP/rt_769402-000012a2 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116387210 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724496593.10478 +DestLinkedid: 1724496593.10477 +DialStatus: ANSWER +BridgeUniqueid: c0b00e09-bbed-40e2-9df4-82ad8107fe9f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +13:50:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: BRIDGEPVTCALLID +Value: 5782e31b-7c26-4d75-86af-113a2b08d6c6 + + +13:50:13 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x07c4de0c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496613.321044 +SentRTP: 1724616592 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x731c08c5 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 26128 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:50:23 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x07c4de0c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496623.321085 +SentRTP: 1724696592 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0x731c08c5 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 26628 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:50:28 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x07c4de0c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496628.321221 +SentRTP: 1724736432 +SentPackets: 1500 +SentOctets: 240000 +Report0SourceSSRC: 0x731c08c5 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 26878 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:50:33 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x07c4de0c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496633.321338 +SentRTP: 1724776432 +SentPackets: 1750 +SentOctets: 280000 +Report0SourceSSRC: 0x731c08c5 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27128 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:50:38 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x07c4de0c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496638.321417 +SentRTP: 1724816592 +SentPackets: 2001 +SentOctets: 320160 +Report0SourceSSRC: 0x731c08c5 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27378 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:50:43 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x07c4de0c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496643.321751 +SentRTP: 1724856432 +SentPackets: 2250 +SentOctets: 360000 +Report0SourceSSRC: 0x731c08c5 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27628 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:50:48 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x07c4de0c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496648.321327 +SentRTP: 1724896592 +SentPackets: 2501 +SentOctets: 400160 +Report0SourceSSRC: 0x731c08c5 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 27878 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:50:53 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x07c4de0c +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496653.320488 +SentRTP: 1724936592 +SentPackets: 2751 +SentOctets: 440160 +Report0SourceSSRC: 0x731c08c5 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 28128 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:51:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +Variable: RTPAUDIOQOSLOSSBRIDGED +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +13:51:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593 +Variable: BRIDGEPEER +Value: + + +13:51:02 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: c0b00e09-bbed-40e2-9df4-82ad8107fe9f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: PJSIP/12-000012a1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-di +Exten: s +Priority: 28 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: ARG2 +Value: + + +13:51:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +13:51:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116387210 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496593.10478 +Linkedid: 1724496593.10477 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: c0b00e09-bbed-40e2-9df4-82ad8107fe9f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:51:02 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: c0b00e09-bbed-40e2-9df4-82ad8107fe9f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: PJSIP/12-000012a1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hang +Exten: s +Priority: 4 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10502 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_CONTEXT + + +13:51:02 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/12-000012a1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116387210 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724496593.10477 +Linkedid: 1724496593.10477 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000220; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/12 +State: NOT_INUSE +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Source: 78162769402 +Destination: 989116387210 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000012a2 +LastApplication: Dial +LastData: PJSIP/+79116387210@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 68 +BillableSeconds: 50 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724 + + +13:51:02 + +Event: UserEvent +Privilege: user,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/12 +ActionID: 10503 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116046445 +Priority: 1 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: ARG3 +Value: +Extension: 989116046445 +Application: Macro +AppData: user-callerid,LIMIT,EXTERNAL, + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEP +Value: + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724496696.1 +Linkedid: 1724496696.10479 +Extension: s +Application: Set +AppData: AMPUSER=12 +Variable: MACRO_DEPTH +Value: 1 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724496 +Linkedid: 1724496696.10479 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-us +Exten: s +Priority: 14 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: s +Application: ExecIf +AppData: 1?Set(REALCALLERIDNUM=12) +Variable: MACRO_DEPTH +Value: 1 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_1 +Variable: MACRO_DEPTH +Value: 1 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: DB_RESULT +Value: 12 +Extension: s +Application: Set +AppData: AMPUSERCID=12 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_1" <12>) + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 26 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(GROUP(concurrency_limit)=12) + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?continue + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: +Extension: s +Application: Set +AppData: CDR(cnum)=12 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116046445 +Priority: 2 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: 989116046445 +Application: Gosub +AppData: sub-record-check,s,1(out,989116046445,dontcare) +Variable: L +Value: out + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724496696.10479 +Linkedid: 17 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724496696.104 +Linkedid: 1724496696.10479 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989116046445-12-20240824-135136-1724496696.10479 +Variable: RECFROMEXTEN +Value: 12 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __RECORD_ID +Value: PJSIP/12-000012a3 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: out +Application: Return +AppData: +Variable: ARGC +Value: + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116046445 +Priority: 6 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: _ROUTENAME +Value: Megafon +Extension: 989116046445 +Application: Set +AppData: MOHCLA + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989116046445 +Priority: 10 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: _NODEST +Value: +Extension: 989116046445 +Application: Set +AppData: _NODEST= + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 6 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: DIAL_NUMBER=+79116046445 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 10 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?nomax + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 4 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name-pres)=) + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 8 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.1 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 12 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALLOWTHISROUTE=YES) + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: MACRO_DEPTH +Value: 2 + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 22 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(EMERGENCYCID=) + + +13:51:36 + +Event: NewCallerid +Privilege: call,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 31 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 39 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=prohib_passed_screen) + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 14 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GosubIf +AppData: 0?sub-flp-6,s,1() + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 18 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: s +Application: ExecIf +AppData: 0?Set(DIAL_TRUNK_OPTIONS=TM(confirm)) +Variable: MACRO_DEPTH +Value: 1 + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 20 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: s +Application: Macro +AppData: dialout-trunk-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 21 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 0?bypass,1 + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +79116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 23 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(name,i)=CID + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 27 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: __~HASH~SIPHEADERS~Alert-Info~ +Value: unset +Extension: s +Application: Set +AppData: HASH(__SIPHEADERS,Alert-Info)=unset + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: s +Application: Dial +AppData: PJSIP/+79116046445@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79116046445^989116046445^6^1724496696^^78162769402) +Variable: RINGTIME +Value: + + +13:51:36 + +Event: V +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +Variable: ROUTENAME +Value: Megafon + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +Variable: __YEAR +Value: 2024 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_76940 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +Variable: LOCAL(ARGC) +Value: 1 +Extension: s +Application: Set +AppData: TECH=PJSIP +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 5 +Uniqueid: 1724496696.1048 +Linkedid: 1724496696.10479 +Extension: s +Application: Set +AppData: sipheader=unset +Variable: WHILE_0 +Value: func-apply-sipheaders,s,4 + + +13:51:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 12 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +Extension: s +Application: EndWhile +AppData: +Variable: END_WHILE_0 +Value: func-apply-sipheaders,s,13 + + +13:51:36 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/rt_769402-000012a4 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989116046445 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724496696.10480 +DestLinkedid: 1724496696.10479 +DialString: + + +13:51:36 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 + + +13:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116046445 +Priority: 1 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +Extension: 989116046445 +Application: AppDial +AppData: (Outgoing Line) + + +13:51:36 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: RINGTIME_MS +Value: 393 +Device: PJSIP/12 +State: INUSE +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: PJSIP/rt_769402-000012a4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116046445 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116046445 +DestPriority: 1 +DestUniqueid: 1724496696.10480 +DestLinkedid: 1724496696.10479 +DialStatus: RINGING + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524850346 +Priority: 1 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724496697.1 +Linkedid: 1724496697.10481 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-000012a5 + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724496697.10481 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:51:37 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496697.10481 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524850346 +Priority: 2 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989524850346 +Application: Gosub +AppData: sub-record-check,s,1(out,989524850346,dontcare) + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724496697.10481 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724496697.10481 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: __CALLFILENAME +Value: out-989524850346-13-20240824-135137-1724496697.10481 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989524850346-13-20240824-135137-1724496697.10481 + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989524850346-13-20240824-135137-1724496697.10481.wav + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524850346 +Priority: 7 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697. +Variable: MOHCLASS +Value: default +Extension: 989524850346 +Application: Set +AppData: MOHCLASS=default + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989524850346 +Priority: 11 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_EXTEN +Value: 989524850346 +Extension: 989524850346 +Application: Macro +AppData: dialout-trunk,6,+79524850346,,off + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) +Variable: DB_RESULT +Value: + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79524850346 + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79524850346 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79524850346) + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Extension: s +Application: Dial +AppData: PJSIP/+79524850346@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79524850346^989524850346^6^1724496697^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: PROGRESSTIME +Value: + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496697.10482 +Linkedid: 1724496697.10481 +Variable: __REC_STATUS +Value: RECORDING + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496697.10482 +Linkedid: 1724496697.10481 +Variable: __DAY +Value: 24 + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524850346 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724496697.10482 +Linkedid: 1724496697.10481 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524850346 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724496697.10482 +Linkedid: 1724496697.10481 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989524850346 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724496697.1 +Linkedid: 1724496697.10481 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:51:37 + +Event: N +Privilege: call,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989524850346 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989524850346 +Priority: 1 +Uniqueid: 1724496697.10482 +Linkedid: 1724496697.10481 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000012a6 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989524850346 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724496697.10482 +DestLinkedid: 1724496697.10481 +DialString: +79524850346@rt_769402 + + +13:51:37 + +Event: QueueMemberStatus +Privilege: agent,all +Exten: s +Context: macro-dialout-trunk +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Priority: 28 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: RINGTIME_MS +Value: 296 +DestChannel: PJSIP/rt_769402-000012a6 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989524850346 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989524850346 +DestPriority: 1 +DestUniqueid: 1724496697.10482 +DestLinkedid: 1724496697.10481 +DialStatus: RINGING +Device: PJSIP/13 +State: INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:51:40 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-000012a3 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: PROGRESSTIME_MS +Value: 3932 +DestChannel: PJSIP/rt_769402-000012a4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989116046445 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989116046445 +DestPriority: 1 +DestUniqueid: 1724496696.10480 +DestLinkedid: 1724496696.10479 +DialStatus: PROGRESS + + +13:51:45 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116046445 +Priority: 1 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6e24786d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496705.703171 +SentRTP: 1724536696 +SentPackets: 251 +SentOctets: 40160 +Report0SourceSSRC: 0x71ebde22 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37452 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:51:47 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/rt_769402 +State: RINGINUSE +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: DIALSTATUS +Value: ANSWER + + +13:51:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524850346 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 1 +Uniqueid: 1724496697.104 +Linkedid: 1724496697.10481 +Variable: LOCAL(ARGC) +Value: 6 + + +13:51:47 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/13-000012a5 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496697.10482 +Linkedid: 1724496697.10481 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +13:51:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +BridgeUniqueid: 73ab09d7-9f95-48a8-a14c-bc3d9a8c6c43 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) +Variable: BRIDGEPEER +Value: PJSIP/rt_769402-000012a6 + + +13:51:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989116046445 +Priority: 1 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +13:51:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +13:51:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +Variable: BRIDGEPEER +Value: PJSIP/12-000012a3 +DestChannel: PJSIP/rt_769402-000012a4 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989116046445 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724496696.10480 +DestLinkedid: 1724496696.10479 +DialStatus: ANSWER +BridgeUniqueid: a4699a41-48a2-401b-8dab-836fc9ca4426 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +13:51:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: BRIDGEPVTCALLID +Value: 56b7a4b8-c8aa-4c45-b884-703fc7f084ac + + +13:51:50 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6e24786d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496710.702793 +SentRTP: 1724576696 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x71ebde22 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 37702 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:51:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524850346 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496697.10482 +Linkedid: 1724496697.10481 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x47d96c0f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496712.556272 +SentRTP: 1724536544 +SentPackets: 250 +SentOctets: 40000 +Report0SourceSSRC: 0x25a4d79e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 8452 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:51:57 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524850346 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496697.10482 +Linkedid: 1724496697.10481 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x47d96c0f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496717.556332 +SentRTP: 1724576704 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0x25a4d79e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 8702 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:52:00 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x6e24786d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496720.702306 +SentRTP: 1724656696 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0x71ebde22 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 38202 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 5 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:52:02 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524850346 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496697.10482 +Linkedid: 1724496697.10481 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x47d96c0f +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496722.556581 +SentRTP: 1724616704 +SentPackets: 751 +SentOctets: 120160 +Report0SourceSSRC: 0x25a4d79e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 8952 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 8 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:52:02 + +Event: BridgeLeave +Privilege: call,all +Channel: PJSIP/12-000012a3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: a4699a41-48a2-401b-8dab-836fc9ca4426 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:52:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116046445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_EXTEN +Value: + + +13:52:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116046445 +ConnectedLineName: C +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +13:52:02 + +Event: BridgeDestroy +Privilege: call,all +Channel: PJSIP/rt_769402-000012a4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: a4699a41-48a2-401b-8dab-836fc9ca44 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:52:02 + +Event: VarSet +Privilege: call,all +Exten: h +Context: from-internal +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +AccountCode: +Source: 78162769402 +Destination: 989116046445 +DestinationContext: from-internal +CallerID: "" <78162769402> +Channel: PJSIP/12-000012a3 +DestinationChannel: PJSIP/rt_769402-000012a4 +LastApplication: Dial +LastData: PJSIP/+79116046445@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 26 +BillableSeconds: 14 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724496696.10479 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989116046445 +ConnectedLineName: CID +Language: ru +Priority: 1 +Uniqueid: 1724496696.10479 +Linkedid: 1724496696.10479 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000172; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing + + +13:52:02 + +Event: UserEvent +Privilege: user,all +Channel: PJS +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989116046445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496696.10480 +Linkedid: 1724496696.10479 +Variable: RTPAUDIOQOSMES +Value: 1 +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory + + +13:52:02 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/RT_769402 +ActionID: 10505 + + +13:52:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524850346 +CallerIDName: CID +ConnectedLineNum: 989524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: RTPAUDIOQOSRTTBRIDGED +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +13:52:05 + +Event: VarS +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012a6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989524850346 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496697.10482 +Linkedid: 1724496697.10481 +Variable: RTPAUDIOQOS +Value: ssrc=1205431311;themssrc=631560094;lp=0;rxjitter=0.000000;rxcount=893;txjitter=0.000750;txcount=894;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +BridgeUniqueid: 73ab09d7-9f95-48a8-a14c-bc3d9a8c6c43 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:52:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: ANSWEREDTI +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10506 +BridgeUniqueid: 73ab09d7-9f95-48a8-a14c-bc3d9a8c6c43 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +13:52:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: MACRO_CONTEXT +Value: + + +13:52:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Cause: 16 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +13:52:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012a5 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496697.10481 +Linkedid: 1724496 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOS +Value: ssrc=1875270504;themssrc=4141300923;lp=0;rxjitter=0.000000;rxcount=894;txjitter=0.000875;txcount=893;rlp=0;rtt=0.000000;rxmes=0.000000;txmes=85.367289 +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle + + +13:52:05 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/13 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989524850346 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724496697.10481 +Linkedid: 1724496697.10481 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 78162769402 +Destination: 989524850346 +DestinationContext: from-internal +CallerID: "" <78162769402> +DestinationChannel: PJSIP/rt_769402-000012a6 +LastApplication: Dial +LastData: PJSIP/+79524850346@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 27 +BillableSeconds: 18 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724496697.10481 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10507 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 28 +Priority: 1 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:52:53 + +Event: +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 28 +Priority: 3 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_EXTEN +Value: 28 +Extension: 28 +Application: Macro +AppData: exten-vm,novm,28,0,0,0 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: CHANEXTEN +Value: 12-000012a7 +Extension: s +Application: Set +AppData: CHANEXTEN=12-000012a7 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 2 + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: MACRO_DEPTH +Value: 2 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 22 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(all)="Регистратура_1" <12> + + +13:52:53 + +Event: Newexten +Privilege: dialpla +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: DB_RESULT +Value: 79217365096 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=28) + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 25 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?limit + + +13:52:53 + +Event: New +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: __TTL +Value: 64 +Extension: s +Application: Set +AppData: __TTL=64 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-calle +Exten: s +Priority: 52 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: Set +AppData: CDR(cnam)=Регистратура_1 +Variable: MACRO_DEPTH +Value: 2 + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 54 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 1 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: 0?initialized + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: Set +AppData: __FROMEXTEN=12 +Variable: MACRO_DEPTH +Value: 1 + + +13:52:53 + +Event: Newexten +Privilege: d +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=internal + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-ch +Exten: exten +Priority: 14 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: Set +AppData: CALLERRECMODE=yes + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 22 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(RECMODE=dontcare) + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724496773.10483 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/internal-28-12-20240824-135253-1724496773.10483.wav,abi(), + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Рег +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: Macro +AppData: dial-one,,HhTtr,28 +Variable: MACRO_EXTEN +Value: s + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 1 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=28 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: GotoIf +AppData: 0?next1 +Variable: MACRO_DEPTH +Value: 2 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/28/sip +Variable: MACRO_DEPTH +Value: 2 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: +Extension: dstring +Application: Set +AppData: ITER=2 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/28)=12 + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-p +Exten: s +Priority: 1 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Goto +AppData: state-not_set,1 + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-display +Exten: state-not_set +Priority: 2 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: state-not_set +Application: Return +AppData: +Variable: DB_RESULT +Value: Каб. 3 (Процедурный) + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_DEPTH +Value: 2 +Extension: +Application: Set +AppData: D_OPTIONS=HhTtr + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: r +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: Dial +AppData: PJSIP/28/sip +Variable: DIALEDPEERNAME +Value: + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/28-000012a8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496773.10484 +Linkedid: 1724496773.10483 +Variable: DIALEDPEERNUMBER +Value: 28/sip + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/28-000012a8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496773.10484 +Linkedid: 1724496773.10483 +Variable: __TIMESTR +Value: 20240824-135253 + + +13:52:53 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/28-000012a8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-internal +Exten: 28 +Priority: 1 +Uniqueid: 1724496773.10484 +Linkedid: 1724496773.10483 +Variable: __RINGTIMER +Value: 60 +Extension: 28 +Application: AppDial +AppData: (Outgoing Line) + + +13:52:53 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724496773.10484 +Linkedid: 1724496773.10483 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +13:52:53 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/28-000012a8 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 28 +CallerIDName: Каб. 3 (Процедурный) +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-i +Exten: 28 +Priority: 1 +Uniqueid: 1724496773.10484 +Linkedid: 1724496773.10483 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/28-000012a8 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 28 +DestCallerIDName: Каб. 3 (Процедурный) +DestConnectedLineNum: 12 +DestConnectedLineName: Регистратура_1 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724496773.10484 +DestLinkedid: 1724496773.10483 +DialString: 28/sip +Device: PJSIP/12 +State: INUSE +Hint: PJSIP/12&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:52:53 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: ext-local +Exten: 28 +Priority: 55 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: RINGTIME_MS +Value: 44 +DestChannel: PJSIP/28-000012a8 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 28 +DestCallerIDName: Каб. 3 (Процедурный) +DestConnectedLineNum: 12 +DestConnectedLineName: Регистратура_1 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 28 +DestPriority: 1 +DestUniqueid: 1724496773.10484 +DestLinkedid: 1724496773.10483 +DialStatus: RINGING +Hint: PJSIP/28&Custom +Status: 8 +StatusText: Ringing +Device: PJSIP/28 +State: RINGING + + +13:53:19 + +Event: Va +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +DestChannel: PJSIP/28-000012a8 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 28 +DestCallerIDName: Каб. 3 (Процедурный) +DestConnectedLineNum: 12 +DestConnectedLineName: Регистратура_1 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 28 +DestPriority: 1 +DestUniqueid: 1724496773.10484 +DestLinkedid: 1724496773.10483 +DialStatus: CANCEL +Variable: MACRO_CONTEXT +Value: ext-local + + +13:53:19 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Variable: MACRO_PRIORITY +Value: + + +13:53:19 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Extension: s +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +13:53:19 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: +Hint: PJSIP/28&Custom +Status: 0 +StatusText: Idle +Channel: PJSIP/12-000012a7 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Priority: 4 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/28 +State: NOT_INUSE +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10508 + + +13:53:19 + +Event: UserEvent +Privilege: user,all +Exten: h +Context: ext-local +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Channel: PJSIP/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 28 +ConnectedLineName: Каб. 3 (Процедурный) +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724496773.10483 +Linkedid: 1724496773.10483 +Cause: 127 +Cause-txt: Interworking, unspecified +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Source: 12 +Destination: 28 +DestinationContext: ext-local +CallerID: "Регистратура_1" <12> +DestinationChannel: PJSIP/28-000012a8 +LastApplication: Dial +LastData: PJSIP/28/sip +StartTime: 2024-08-24 13 +AnswerTime: +EndTime: 2024-08-24 13 +Duration: 26 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724496773.10483 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10509 + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 22 +Priority: 1 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:53:22 + +Event: +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-local +Exten: 22 +Priority: 3 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_EXTEN +Value: 22 +Extension: 22 +Application: Macro +AppData: exten-vm,novm,22,0,0,0 + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: CHANEXTEN +Value: 12-000012a9 +Extension: s +Application: Set +AppData: CHANEXTEN=12-000012a9 + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: s +Application: GotoIf +AppData: 0?limit +Variable: MACRO_DEPTH +Value: 2 + + +13:53:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 18 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) +Variable: MACRO_DEPTH +Value: 2 + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 22 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(all)="Регистратура_1" <12> + + +13:53:22 + +Event: Newexten +Privilege: dialpla +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 23 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: DB_RESULT +Value: 79217365096 +Extension: s +Application: ExecIf +AppData: 0?Set(CUSDIAL=22) + + +13:53:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 25 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?limit + + +13:53:22 + +Event: New +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: __TTL +Value: 64 +Extension: s +Application: Set +AppData: __TTL=64 + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-calle +Exten: s +Priority: 52 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: s +Application: Set +AppData: CDR(cnam)=Регистратура_1 +Variable: MACRO_DEPTH +Value: 2 + + +13:53:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 54 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 1 + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +13:53:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: 0?initialized + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: __MONTH +Value: 08 +Extension: s +Application: Set +AppData: __MONTH=08 + + +13:53:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: s +Application: Set +AppData: __FROMEXTEN=12 +Variable: MACRO_DEPTH +Value: 1 + + +13:53:22 + +Event: Newexten +Privilege: d +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=internal + + +13:53:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-ch +Exten: exten +Priority: 14 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: Set +AppData: CALLERRECMODE=yes + + +13:53:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 22 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(RECMODE=dontcare) + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +13:53:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724496802.10485 +Linkedid: 1 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/internal-22-12-20240824-135322-1724496802.10485.wav,abi(), + + +13:53:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Рег +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: s +Application: Macro +AppData: dial-one,,HhTtr,22 +Variable: MACRO_EXTEN +Value: s + + +13:53:22 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 1 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=22 + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: s +Application: GotoIf +AppData: 0?next1 +Variable: MACRO_DEPTH +Value: 2 + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +13:53:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/22/sip +Variable: MACRO_DEPTH +Value: 2 + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: +Extension: dstring +Application: Set +AppData: ITER=2 + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: dstring +Application: Return +AppData: +Variable: ARGC +Value: + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/22)=12 + + +13:53:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-displ +Exten: s +Priority: 1 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Goto +AppData: state-not_set,1 + + +13:53:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-presencestate-display +Exten: state-not_set +Priority: 2 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Extension: state-not_set +Application: Return +AppData: +Variable: DB_RESULT +Value: Столовая + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистр +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +13:53:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: ANSWEREDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/22/sip + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-000012aa +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496802.10486 +Linkedid: 1724496802.10485 +Variable: __REC_STATU +Value: + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-000012aa +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724496802.10486 +Linkedid: 1724496802.10485 +Variable: __DAY +Value: 24 + + +13:53:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/22-000012aa +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: func-apply-siphe +Exten: s +Priority: 1 +Uniqueid: 1724496802.10486 +Linkedid: 1724496802.10485 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/22-000012aa + + +13:53:23 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-000012aa +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: fun +Exten: s +Priority: 13 +Uniqueid: 1724496802.10486 +Linkedid: 1724496802.10485 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +13:53:23 + +Event: DialState +Privilege: call,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +DestChannel: PJSIP/22-000012aa +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 22 +DestCallerIDName: Столовая +DestConnectedLineNum: 12 +DestConnectedLineName: Регистратура_1 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724496802.10486 +DestLinkedid: 1724496802.10485 +DialString: 22/sip +Device: PJSIP/22 +State: RINGING +Hint: PJSIP/22&Custom +Status: 8 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: 22 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 38 + + +13:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: DIALSTATUS +Value: ANSWER + + +13:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-000012aa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: DIALEDPEERNUMBER +Value: 22/sip +DestChannel: PJSIP/22-000012aa +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 22 +DestCallerIDName: Столовая +DestConnectedLineNum: 12 +DestConnectedLineName: Регистратура_1 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: +DestPriority: 1 +DestUniqueid: 1724496802.10486 +DestLinkedid: 1724496802.10485 +DialStatus: ANSWER +Device: PJSIP/22 +State: INUSE +BridgeUniqueid: cf665a47-49e1-45a0-a614-fce77b6dea3d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +13:53:48 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: BRIDGEPVTCALLID +Value: cf2c8f98-c138-4525-915c-84e78aace4c5 + + +13:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.000000;avgrxjitter=000.000000;stdevrxjitter=000.000000;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +13:53:49 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/12-000012a9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724496802.10486 +Linkedid: 1724496802.10485 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=000.000000; maxrxmes=000.000000; avgrxmes=000.000000; stdevrxmes=000.000000; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +13:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: DIALEDTIME_MS +Value: 26762 +BridgeUniqueid: cf665a47-49e1-45a0-a614-fce77b6dea3d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724496802.10485 +Linkedid: +Variable: ARG1 +Value: + + +13:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +13:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/22-000012aa +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 22 +CallerIDName: Столовая +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: from-internal +Exten: +Priority: 1 +Uniqueid: 1724496802.10486 +Linkedid: 1724496802.10485 +Variable: RTPAUDIOQOS +Value: ssrc=1393196862;themssrc=1400694002;lp=0;rxjitter=0.000000;rxcount=29;txjitter=0.000000;txcount=17;rlp=0;rtt=0.000000;r +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: cf665a47-49e1-45a0-a614-fce77b6dea3d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Hint: PJSIP/22&Custom +Status: 0 +StatusText: Idle + + +13:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/22 +State: NOT_INUSE +Extension: s +Application: Hangup +AppData: + + +13:53:49 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012a9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Variable: RTPAUDIOQOSMES +Value: minrxmes=000.000000; m + + +13:53:49 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/12 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 22 +ConnectedLineName: Столовая +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724496802.10485 +Linkedid: 1724496802.10485 +Cause: 16 +Cause-txt: Normal Clearing +Source: 12 +Destination: 22 +DestinationContext: ext-local +CallerID: "Регистратура_1" <12> +DestinationChannel: PJSIP/22-000012aa +LastApplication: Dial +LastData: PJSIP/22/sip +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 26 +BillableSeconds: 0 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724496802.10485 +UserField: +Device: PJSIP/12 +State: NOT_INUSE +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10511 +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217055445 +Priority: 1 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724496881.1 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13-000012ab + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER=13 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-c +Exten: s +Priority: 11 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Extension: s +Application: Set +AppData: AMPUSER=13 +Variable: DB_RESULT +Value: 13 + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: DB_RESULT +Value: 13 +Extension: s +Application: Set +AppData: AMPUSERCIDNAME=Регистратура_2 + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 20 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSERCID=13 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 24 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: DB_RESULT +Value: 3 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(all)="Регистратура_2" <13>) + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 27 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: DB_RESULT +Value: ru +Extension: s +Application: ExecIf +AppData: 1?Set(CHANNEL(language)=ru) + + +13:54:41 + +Event: Newexten +Privilege: dialplan,al +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CALLERID(number)=13 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724496881.10487 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217055445 +Priority: 2 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 989217055445 +Application: Gosub +AppData: sub-record-check,s,1(out,989217055445,dontcare) + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724 +Linkedid: 1724496881.10487 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: __MONTH +Value: 08 + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: __MON_FMT +Value: wav +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 3 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: RECMODE +Value: yes +Extension: out +Application: ExecIf +AppData: 0?Goto(routewins) + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724496881.10487 +Linkedid: 172449 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() +Variable: LOCAL(ARGC) +Value: 3 + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: __CALLFILENAME +Value: out-989217055445-13-20240824-135441-1724496881.10487 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=out-989217055445-13-20240824-135441-1724496881.10487 + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=out-989217055445-13-20240824-135441-1724496881.10487.wav + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-00001 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: out +Priority: 6 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: ARG2 +Value: +Extension: out +Application: Return +AppData: + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217055445 +Priority: 7 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881. +Variable: MOHCLASS +Value: default +Extension: 989217055445 +Application: Set +AppData: MOHCLASS=default + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: 989217055445 +Priority: 11 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_EXTEN +Value: 989217055445 +Extension: 989217055445 +Application: Macro +AppData: dialout-trunk,6,+79217055445,,off + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: DIAL_TRUNK +Value: 6 +Extension: s +Application: Set +AppData: DIAL_TRUNK=6 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 4 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num)=13) +Variable: DB_RESULT +Value: + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 7 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: DIAL_TRUNK_OPTIONS +Value: HhTtr +Extension: s +Application: Set +AppData: DIAL_TRUNK_OPTIONS=HhTtr + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 11 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Extension: s +Application: GotoIf +AppData: 0?chanfull +Variable: MACRO_DEPTH +Value: 1 + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJS +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 13 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Extension: s +Application: Macro +AppData: outbound-callerid,6 +Variable: MACRO_DEPTH +Value: 2 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 5 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DE +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(num-pres)=) + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 9 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 2 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 16 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Extension: s +Application: GotoIf +AppData: 1?normcid +Variable: DB_RESULT +Value: \"SecretyDolgoletiya\" <79217365096> + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 23 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: TRUNKOUTCID +Value: 7816 +Extension: s +Application: Set +AppData: TRUNKOUTCID=78162769402 + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217365096 +CallerIDName: SecretyDolgoletiya +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 31 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(CALLERID(all)="SecretyDolgoletiya" <79217365096>) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 35 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TIOHIDE=no + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-outbound-callerid +Exten: s +Priority: 40 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(outbound_cnum)=78162769402 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 15 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: OUTNUM=+79217055445 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 19 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?AGI(allowlist-autoadd.agi,) + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7816 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 781627694 +CallerIDName: +ConnectedLineNum: +79217055445 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 22 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 1?Set(CONNECTEDLINE(num,i)=+79217055445) + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 24 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: DB_RESULT +Value: Регистратура_2 +Extension: s +Application: ExecIf +AppData: 0?Set(CONNECTEDLINE(name,i)=CID + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Extension: s +Application: Dial +AppData: PJSIP/+79217055445@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-obroute-email^+79217055445^989217055445^6^1724496881^^78162769402) +Variable: MACRO_DEPTH +Value: 1 + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +79217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 28 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: PROGRESSTIME +Value: + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +Variable: __REC_STATUS +Value: RECORDING + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: s +Priority: 1 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +Variable: __DAY +Value: 24 + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217055445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +Extension: s +Application: Set +AppData: SIPHEADERKEYS=Alert-Info +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: TECH +Value: PJSIP + + +13:54:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217055445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 6 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +Variable: sipheader +Value: unset +Extension: s +Application: ExecIf +AppData: 0?SIPRemoveHeader(Alert-Info + + +13:54:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 989217055445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724496881.1 +Linkedid: 1724496881.10487 +Extension: s +Application: While +AppData: 0 +Variable: sipkey +Value: + + +13:54:41 + +Event: NewConnectedLine +Privilege: call,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/rt_769402-000012ac +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 989217055445 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724496881.10488 +DestLinkedid: 1724496881.10487 +DialString: +79217055445@rt_769402 + + +13:54:41 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Extension: 989217055445 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: INUSE +Variable: RINGTIME_MS +Value: 393 +DestChannel: PJSIP/rt_769402-000012ac +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989217055445 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989217055445 +DestPriority: 1 +DestUniqueid: 1724496881.10488 +DestLinkedid: 1724496881.10487 +DialStatus: RINGING +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +13:54:41 + +Event: DialState +Privilege: call,all +Channel: PJSIP/13-000012ab +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: PROGRESSTIME_MS +Value: 883 +DestChannel: PJSIP/rt_769402-000012ac +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 989217055445 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: 989217055445 +DestPriority: 1 +DestUniqueid: 1724496881.10488 +DestLinkedid: 1724496881.10487 +DialStatus: PROGRESS + + +13:54:52 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 989217055445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217055445 +Priority: 1 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5251988d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496892.161831 +SentRTP: 1724576880 +SentPackets: 501 +SentOctets: 80160 +Report0SourceSSRC: 0xc8046798 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 33727 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:54:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217055445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 989217055445 +Priority: 1 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +Variable: LOCAL(ARG5) +Value: +Device: PJSIP/rt_769402 +State: INUSE + + +13:54:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217055445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-send-obroute-email +Exten: s +Priority: 3 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +13:54:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217055445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +Variable: BRIDGEPEER +Value: PJSIP/13-000012ab +DestChannel: PJSIP/rt_769402-000012ac +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 989217055445 +DestCallerIDName: CID +DestConnectedLineNum: 78162769402 +DestConnectedLineName: +DestLanguage: ru +DestAccountCode: +DestContext: from-trunk +DestExten: +DestPriority: 1 +DestUniqueid: 1724496881.10488 +DestLinkedid: 1724496881.10487 +DialStatus: ANSWER +BridgeUniqueid: 8db8f418-f2e6-4a6b-ba2d-a3e6b02404d5 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Extension: +Application: AppDial +AppData: (Outgoing Line) + + +13:54:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: BRIDGEPVTCALLID +Value: cf06dda1-0644-4117-aee9-6b4e26aae7ec + + +13:55:02 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217055445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5251988d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496902.161906 +SentRTP: 1724656880 +SentPackets: 1001 +SentOctets: 160160 +Report0SourceSSRC: 0xc8046798 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34227 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:55:07 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217055445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5251988d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496907.162837 +SentRTP: 1724696880 +SentPackets: 1251 +SentOctets: 200160 +Report0SourceSSRC: 0xc8046798 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34477 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 7 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:55:12 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/rt_769402-000012ac +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 989217055445 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +To: 212.48.197.150 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5251988d +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724496912.162391 +SentRTP: 1724736880 +SentPackets: 1501 +SentOctets: 240160 +Report0SourceSSRC: 0xc8046798 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 34727 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +13:55:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T13 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +13:55:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T13 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +13:55:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000125;maxrxjitter=000.002500;avgrxjitter=000.001243;stdevrxjitter=000.000160;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +13:55:15 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/13-000012ab +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: CID +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: +Priority: 1 +Uniqueid: 1724496881.10488 +Linkedid: 1724496881.10487 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000160; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +13:55:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-dialout-trunk +Exten: s +Priority: 28 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: DIALEDTIME_MS +Value: 34819 +BridgeUniqueid: 8db8f418-f2e6-4a6b-ba2d-a3e6b02404d5 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +13:55:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: from-internal +Exten: h +Priority: 1 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall + + +13:55:15 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 78162769402 +Destination: 989217055445 +DestinationContext: from-internal +CallerID: "" <78162769402> +Channel: PJSIP/13-000012ab +DestinationChannel: PJSIP/rt_769402-000012ac +LastApplication: Dial +LastData: PJSIP/+79217055445@rt_769402,300,Tb(func-apply-sipheaders^s^1,(6))U(sub-send-ob +StartTime: 2024-08-24 13 +AnswerTime: 2024-08-24 13 +EndTime: 2024-08-24 13 +Duration: 34 +BillableSeconds: 23 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724496881.10487 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: 8db8f418-f2e6-4a6b-ba2d-a3e6b02404d5 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: GotoIf +AppData: 1?theend + + +13:55:15 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +13:55:15 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ab +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; +Cause: 16 +Cause-txt: Normal Clearing + + +13:55:15 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: 989217055445 +ConnectedLineName: CID +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724496881.10487 +Linkedid: 1724496881.10487 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10513 +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Device: PJSIP/13 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:07:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +14:07:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724497653.10489 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:07:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724497653. +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-140733 +Variable: __YEAR +Value: 2024 + + +14:07:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:07:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +14:07:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:07:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +14:07:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +14:07:33 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +14:07:33 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +14:07:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 15 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: GotoIf +AppData: 1?post-reverse-charge + + +14:07:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +14:07:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +14:07:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 2 +Application: AGI +AppData: agi + + +14:07:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +CommandId: 904728967 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +14:07:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +CommandId: 2116122825 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +14:07:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +CommandId: 1553997976 +Command: VERBOSE "Goto +ResultCode: 200 +Result: Success + + +14:07:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +CommandId: 482015475 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +14:07:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.104 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +14:07:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-000012ad + + +14:07:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-000012ad + + +14:07:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +14:07:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: CDR(cnum)=79021479067 +Variable: MACRO_DEPTH +Value: 1 + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79021479067 + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000012ad)=TRUE + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724497653.10 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +14:07:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +14:07:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +14:07:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +14:07:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-140744 +Variable: __YEAR +Value: 2024 + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724497664.10490 +Linkedid: 17244976 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: 78162769402 +Application: Set +AppData: __FROM_DID=78162769402 +Variable: __FROM_DID +Value: 78162769402 + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 3 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +14:07:44 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 2 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 46 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: QMOH +Value: +Extension: 194 +Application: Set +AppData: QMOH= + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 52 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: QUEUENUM +Value: 194 +Extension: 194 +Application: Set +AppData: QUEUENUM=194 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497664.10491 +Linkedid: 1724497653.10489 +Variable: __SIGNORE +Value: +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +Device: Queue +State: RINGING +Queue: 194 +Position: 1 +Count: 1 +Class: default +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497664.10491 +Linkedid: 1724497653.10489 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;1 +ChannelState: +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497664.10491 +Linkedid: 1724497653.10489 +Variable: __DAY +Value: 24 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: __NODEST +Value: 194 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: __MOHCLASS +Value: + + +14:07:44 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b1e;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497664.10493 +Linkedid: 1724497653.10489 +DestChannel: Local/12@from-queue-00000b1e;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724497664.10491 +DestLinkedid: 1724497653.10489 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 17 +Linkedid: 1724497653.10489 +Variable: __TTL +Value: 64 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497664.10493 +Linkedid: 172449 +Variable: __YEAR +Value: 2024 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: __QCONTEXT +Value: 0 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: __RINGINGSENT +Value: TRUE + + +14:07:44 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:07:44 + +Event: NewCallerid +Privilege: call,all +LocalOneChannel: Local/13@from-queue-00000b1f;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724497664.10493 +LocalOneLinkedid: 1724497653.10489 +LocalTwoChannel: Local/13@from-queue-00000b1f;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79021479067 +LocalTwoCallerIDName: 79021479067 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724497664.10494 +LocalTwoLinkedid: 1724497653.10489 +Context: from-queue +Exten: 10 +LocalOptimization: No +Channel: Local/10@from-queue-00000b20;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Priority: 1 +Uniqueid: 1724497664.10495 +Linkedid: 1724497653.10489 +DestChannel: Local/13@from-queue-00000b1f;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724497664.10493 +DestLinkedid: 1724497653.10489 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497664.10495 +Linkedid: 1724497653.10489 +Variable: __FROMQUEUEEXTEN +Value: 79021479067 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497664.10495 +Linkedid: 1724497653.10489 +Variable: __TIMESTR +Value: 20240824-140733 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: __CWIGNORE +Value: TRUE + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +14:07:44 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: __DIRECTION +Value: + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497664.10494 +Linkedid: +LocalOneChannel: Local/10@from-queue-00000b20;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724497664.10495 +LocalOneLinkedid: 1724497653.10489 +LocalTwoChannel: Local/10@from-queue-00000b20;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79021479067 +LocalTwoCallerIDName: 79021479067 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724497664.10496 +LocalTwoLinkedid: 1724497653.10489 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000b20;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724497664.10495 +DestLinkedid: 1724497653.10489 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 13 +Application: Set +AppData: QAGENT=13 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 +Variable: DB_RESULT +Value: 0 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG1 +Value: novm + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: +Priority: 1 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 7902 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: AMPUSER=79021479067 +Variable: MACRO_DEPTH +Value: 2 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 790 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +14:07:44 + +Event: Newex +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79021479067 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 7 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: ext-local + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: __PICKUPMARK +Value: 13 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-140744 +Variable: MACRO_DEPTH +Value: 20240824-140744 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +14:07:44 + +Event: V +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record +Exten: exten +Priority: 11 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARG3) +Value: 13 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79021479067) +Variable: MACRO_DEPTH +Value: 1 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79021479067-20240824-140744-1724497664.10494.wav + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:07:44 + +Event: VarSet +Privilege: d +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724497664.10494 +Linkedid: 17 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: MACRO_DEPTH +Value: 2 + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +14:07:44 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724497664.1 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +14:07:44 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653. +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: s +Application: Dial +AppData: PJSIP/13/sip +Variable: DIALEDTIME +Value: + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: +Priority: 3 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: __FROMQ +Value: true +Extension: 10 +Application: GotoIf +AppData: 0?hangup + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 2 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: 10 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) +Variable: __RINGTIMER +Value: 60 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: ARG5 +Value: 0 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724497664.10496 +Variable: TOUCH_MONITOR +Value: 1724497664.10496 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000b20;2 +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000b20;2 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +14:07:45 + +Event: Newexten +Privilege: dialpla +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79021479067 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79021479067 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +14:07:45 + +Event: VarSet +Privilege: +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1 +Linkedid: 1724497653.10489 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724497664.10496 +Linkedid: 1724 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: __CALLFILENAME +Value: external-10-79021479067-20240824-140744-1724497664.10496 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79021479067-20240824-140744-1724497664.10496 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000b20;2 +Variable: __RECORD_ID +Value: Local/10@from-queue-00000b20;2 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG3 +Value: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: 12 +Application: GotoIf +AppData: 1?194,1 +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: DB_RESULT +Value: 0 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724497 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000b1e;2 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79021479067 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79021479067 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: __FROMEXTEN +Value: 79021479067 +Extension: s +Application: Set +AppData: __FROMEXTEN=79021479067 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC +Value: 1 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79021479067 and 12 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: recordche +Application: Gosub +AppData: recordcheck,1(yes,external,12) +Variable: MACRO_DEPTH +Value: 1 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79021479067-20240824-140744-1724497664.10492 +Variable: MACRO_DEPTH +Value: 1 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724497 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: +Linkedid: 1724497653.10489 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DB_RESULT +Value: 12 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724497664.10492 +Linkedid: 172449765 +Variable: LOOPCNT +Value: 1 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecI +AppData: THISDIAL=PJSIP/12/sip + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: GOSUB_RETVAL +Value: +Extension: dstring +Application: Return +AppData: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79021479067 +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: s +Priority: 50 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: RINGTIME_MS +Value: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497664.10497 +Linkedid: 1724497653.10489 +Variable: __CALLFILENAME +Value: external-13-79021479067-20240824-140744-1724497664.10494 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012af +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497664.10497 +Linkedid: 1724497653.10489 +Variable: __TTL +Value: 63 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012af +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497664.10497 +Linkedid: 1724497653.10489 +Variable: __FROMQUEUEEXTEN +Value: 79021479067 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012af +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724497664.10497 +Linkedid: +Variable: LOCAL(ARGC) +Value: 0 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012af +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724497664.10497 +Linkedid: 1724497653.10489 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-in +Exten: s +Priority: 1 +Uniqueid: 1724497664.10498 +Linkedid: 1724497653.10489 +Variable: __CALLFILENAME +Value: external-12-79021479067-20240824-140744-1724497664.10492 + + +14:07:45 + +Event: Va +Privilege: dialplan,all +Channel: PJSIP/12-000012b0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497664.10498 +Linkedid: 1724497653.10489 +Variable: __CALLEE_ACCOUNCODE +Value: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497664.10498 +Linkedid: 1724497653.10489 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012b0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 1 +Uniqueid: 1724497664.10498 +Linkedid: 1724497653.10489 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/12-000012b0 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b0 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724497664.10498 +Linkedid: 1724497653.10489 +Variable: ARGC +Value: +Extension: s +Application: Return +AppData: + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +DestChannel: PJSIP/13-000012af +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724497664.10497 +DestLinkedid: 1724497653.10489 +DialString: 13/sip +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: DEVICES +Value: 10 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstri +Priority: 5 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: MACRO_DEPTH +Value: 2 +DestChannel: Local/13@from-queue-00000b1f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497664.10493 +DestLinkedid: 1724497653.10489 +DialStatus: RINGING + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Device: Local/13@from-queue +State: INUSE +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724497664. +Linkedid: 1724497653.10489 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79021479067 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(A + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 17244976 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 790214790 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: RINGTIME +Value: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Variable: __CWIGNORE +Value: TRUE +DestChannel: PJSIP/12-000012b0 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724497664.10498 +DestLinkedid: 1724497653.10489 +DialString: 12/sip + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Variable: __MONTH +Value: 08 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Variable: __RVOL_MODE +Value: dontcare + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Variable: __FROM_DID +Value: 79217365096 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000012b1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +14:07:45 + +Event: Newstate +Privilege: call,all +Channel: Local/10@from-queue-00000b20;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/10-000012b1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724497664.10499 +DestLinkedid: 1724497653.10489 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE +DialString: 10/sip + + +14:07:45 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +DestChannel: Local/10@from-queue-00000b20;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497664.10495 +DestLinkedid: 1724497653.10489 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +CommandId: 1794558451 +Command: VERBOSE "Group +ResultCode: 200 +Result: S + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +CommandId: 1980736662 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: AMPUSER +Value: 79602005049 +Extension: s +Application: Set +AppData: AMPUSER=79602005049 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(__CIDMASQUERADING=TRUE) + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: __CALLEE_ACCOUNCODE +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: s +Application: Set +AppData: CALLERID(name)=79602005049 +Variable: MACRO_DEPTH +Value: 1 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Device: PJSIP/rt_769402 +State: INUSE +Variable: MACRO_DEPTH +Value: 1 + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 3 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: GOSUB_RETVAL +Value: TRUE +Extension: s +Application: Set +AppData: GOSUB_RETVAL=TRUE + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: +Priority: 11 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: 194 +Application: Set +AppData: QAINFO= +Variable: QAINFO +Value: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 17 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: VQ_JOINMSG +Value: +Extension: 194 +Application: Set +AppData: QCANCELMISSED= + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 22 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: 194 +Application: Set +AppData: VQ_OPTIONS= +Variable: QOPTIONS +Value: tR + + +14:07:45 + +Event: N +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 27 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: 194 +Application: Set +AppData: QRULE= +Variable: QRULE +Value: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: P +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 31 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 18 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: s +Application: GotoIf +AppData: 0?sub-record-check,q,1 +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:07:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: recordcheck +Application: Return +AppData: +Variable: ARGC +Value: + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +14:07:45 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +14:07:47 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3158 +Device: PJSIP/13 +State: RINGING +DestChannel: Local/13@from-queue-00000b1f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497664.10493 +DestLinkedid: 1724497653.10489 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:07:48 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3853 +DestChannel: Local/10@from-queue-00000b20;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497664.10495 +DestLinkedid: 1724497653.10489 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/10 +State: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:07:48 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012b0 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724497664.10498 +Linkedid: 1724497653.10489 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +14:07:49 + +Event: DialState +Privilege: call,all +Device: PJSIP/12 +State: RINGING +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: RINGTIME_MS +Value: 4482 +DestChannel: Local/12@from-queue-00000b1e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497664.10491 +DestLinkedid: 1724497653.10489 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: auto-blkvm + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021479067 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 2 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 312 +LastCall: 1724493557 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Set +AppData: __MACRO_RESULT= + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 5 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Variable: FORWARD_CONTEXT +Value: from-internal +Extension: s +Application: Set +AppData: FORWARD_CONTEXT=from-internal + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Extension: s +Application: Macro +AppData: blkvm-clr, +Variable: ARG1 +Value: + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_EXTEN +Value: s + + +14:07:52 + +Event: DialEnd +Privilege: call,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +14:07:52 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +BridgeUniqueid: bebafdfb-ae79-489c-a622-b4d91794b1b2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: INUSE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000b1f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497664.10491 +DestLinkedid: 1724497653.10489 +DialStatus: CANCEL + + +14:07:52 + +Event: Hangup +Privilege: call,all +Channel: Local/13@from-queue-00000b1f;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +DestChannel: Local/13@from-queue-00000b1f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497664.10493 +DestLinkedid: 1724497653.10489 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.1 +Linkedid: 1724497653.10489 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Local/13@from-queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: PJSIP/12-000012b0 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724497664.10498 +DestLinkedid: 1724497653.10489 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 8 +RingTime: 7 +BridgeUniqueid: fabd8748-659d-49bc-a1b7-e3d60d4fc1fa +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: ARG1 +Value: + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:07:52 + +Event: Cdr +Privilege: cdr,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724497664.10498 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/12 +State: NOT_INUSE +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Source: 79021479067 +Destination: 12 +DestinationContext: ext-local +CallerID: "79021479067" <79021479067> +DestinationChannel: PJSIP/12-000012b0 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 7 +BillableSeconds: 0 + + +14:07:52 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000b1e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497664.10492 +Linkedid: 1724497653.10489 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Device: Local/12@from-queue +State: NOT_INUSE +Exten: s +Context: macro-dial-one +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +DestChannel: PJSIP/13-000012af +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724497664.10497 +DestLinkedid: 1724497653.10489 +DialStatus: CANCEL +Variable: MAC +Value: 0 +Source: 79021479067 +Destination: 13 +DestinationContext: ext-local +CallerID: "79021479067" <79021479067> +DestinationChannel: PJSIP/13-000012af +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724497664.10494 +UserField: + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_EXTEN +Value: + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +BridgeUniqueid: fabd8748-659d-49bc-a1b7-e3d60d4fc1fa +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +14:07:52 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/13-000012af +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724497664.10497 +Linkedid: 1724497653.10489 +Variable: BRIDGEPEER +Value: Local/10@from-queue-00000b20;1 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: fabd8748-659d-49bc-a1b7-e3d60d4fc1fa +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724 + + +14:07:52 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/13@from-queue-00000b1f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +BridgeUniqueid: bebafdfb-ae79-489c-a622-b4d91794b1b2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Variable: BRIDGEPVTCALLID +Value: f79316e7-8d2c-4c8e-9ca6-77197967ce54 + + +14:07:52 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497664.10494 +Linkedid: 1724497653.10489 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10519 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: 194 +Application: QueueLog +AppData: 194,1724497664.10490,NONE,DID,78162769402 + + +14:07:54 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:07:54 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497664.10 +Linkedid: 1724497664.10490 +Variable: QUEUEJOINTIME +Value: 1724497674 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497674.10500 +Linkedid: 1724497664.10490 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497674.10500 +Linkedid: 1724497664.10490 +Variable: __MOHCLASS +Value: + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: +Priority: 1 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: __MONTH +Value: 08 + + +14:07:54 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b21;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724497674.10500 +LocalOneLinkedid: 1724497664.10490 +LocalTwoChannel: Local/12@from-queue-00000b21;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79602005049 +LocalTwoCallerIDName: 79602005049 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724497674.10501 +LocalTwoLinkedid: 1724497664.10490 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b21;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497674.10500 +DestLinkedid: 1724497664.10490 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497674.10502 +Linkedid: +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 78162769402 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497674.10502 +Linkedid: 17 +Variable: __MOHCLASS +Value: + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: __QC_CONFIRM +Value: 0 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: __CALLEE_ACCOUNCODE +Value: + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: __DAY +Value: 24 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b22;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 78162769402 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724497674.10502 +LocalOneLinkedid: 1724497664.10490 +LocalTwoChannel: Local/13@from-queue-00000b22;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79602005049 +LocalTwoCallerIDName: 79602005049 +LocalTwoConnectedLineNum: 78162769402 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724497674.10503 +LocalTwoLinkedid: 1724497664.10490 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000b22;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 78162769402 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724497674.10502 +DestLinkedid: 1724497664.10490 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +DialString: Local/13@from-queue/n + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: DB_RESULT +Value: EXTENSION +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724497674.10503 +Linkedid: 172449766 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 17244 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b22;2 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 7960 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79602005049 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: ARG1 +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=13 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724497674 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-140754 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 5?checkaction + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 7960200 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEP +Value: 79602005049 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79602005049) + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79602005049-20240824-140754-1724497674.10503.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-13-79602005049-20240824-140754-1724497674.10503.wav + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: MACRO_DEPTH +Value: 1 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=13) + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 6 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Extension: s +Application: GotoIf +AppData: 1?skip1 +Variable: MACRO_DEPTH +Value: 2 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 +Variable: DB_RESULT +Value: PJSIP/13 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: DSTRING +Value: PJSIP/13/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip +Variable: DSTRING +Value: PJSIP/13/sip + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 2 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 3 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: 12 +Application: GotoIf +AppData: 0?hangup +Variable: __FROMQ +Value: true + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG4 +Value: 0 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724497674.10501 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: +Exten: s +Priority: 4 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000b21;2 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79602005049 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-calleri +Exten: s +Priority: 40 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 781627694 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-ho +Exten: s +Priority: 1 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79602005049 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exte +Exten: s +Priority: 54 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497674.10504 +Linkedid: 1724497664.10490 +Variable: DIALEDPEERNUMBER +Value: 13/sip +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012b2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17 +Linkedid: 1724497664.10490 +Variable: __TTL +Value: 63 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:07:54 + +Event: VarSe +Privilege: dialplan,all +Channel: PJSIP/13-000012b2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497674.10504 +Linkedid: 1724497664.10490 +Variable: __NODEST +Value: 194 +Extension: s +Application: Set +AppData: NOW=1724497674 + + +14:07:54 + +Event: VarS +Privilege: dialplan,all +Channel: PJSIP/13-000012b2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497674.10504 +Linkedid: 1724497664.10490 +Variable: __DIRECTION +Value: +Extension: s +Application: Set +AppData: __DAY=24 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: s +Application: NoOp +AppData: Applying SIP Headers to channel PJSIP/13-000012b2 +Variable: MACRO_DEPTH +Value: 1 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012b2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79602005049 +ConnectedLineName: 79602005049 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-140754 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724497674.10504 +Linkedid: 1724497664.10490 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: rec +Priority: 11 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: __CALLFILENAME +Value: external-12-79602005049-20240824-140754-1724497674.10501 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79602005049-20240824-140754-1724497674.10501 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.1049 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000b21;2 +Variable: MACRO_DEPTH +Value: 1 + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: ARG3 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:07:54 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 +Variable: MACRO_DEPTH +Value: 2 + + +14:07:54 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: EXTH +Value: 2 +Extension: s +Application: Set +AppData: EXTHASCW= + + +14:07:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: DB_RESULT +Value: 12 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_ +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +14:07:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724497674.10501 +Linkedid: 17244 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +14:07:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Return +AppData: + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724497674.10501 +Linkedid: 172449766 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +14:07:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +14:07:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724497674 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: PROGRESSTIME +Value: + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Variable: __REC_POLICY_MODE +Value: YES + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Variable: __RINGTIMER +Value: + + +14:07:55 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +14:07:55 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602005049 +ConnectedLineName: 79602005049 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Variable: TECH +Value: PJSIP +Extension: s +Application: Set +AppData: TECH=PJSIP + + +14:07:55 + +Event: DialBegin +Privilege: call,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 78162769402 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-000012b2 + + +14:07:55 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 7960200504 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +DestChannel: PJSIP/12-000012b3 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602005049 +DestConnectedLineName: 79602005049 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724497674.10505 +DestLinkedid: 1724497664.10490 +DialStatus: RINGING +Device: Local/13@from-queue +State: INUSE +DialString: 12/sip + + +14:07:55 + +Event: Registry +Privilege: system,all +Device: Local/12@from-queue +State: INUSE +ChannelType: PJSIP +Username: sip +Domain: sip +Status: Registered + + +14:07:56 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012b2 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79602005049 +ConnectedLineName: 79602005049 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724497674.10504 +Linkedid: 1724497664.10490 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +14:07:56 + +Event: DialState +Privilege: call,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: RINGTIME_MS +Value: 2671 +Device: PJSIP/13 +State: RINGING +DestChannel: Local/13@from-queue-00000b22;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602005049 +DestConnectedLineName: 79602005049 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497674.10502 +DestLinkedid: 1724497664.10490 +DialStatus: RINGING +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:07:57 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/12-000012b3 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602005049 +ConnectedLineName: 79602005049 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing + + +14:07:57 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: RINGTIME_MS +Value: 3254 +DestChannel: Local/12@from-queue-00000b21;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602005049 +DestConnectedLineName: 79602005049 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497674.10500 +DestLinkedid: 1724497664.10490 +DialStatus: RINGING + + +14:07:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: DIALEDPEERNUMBER +Value: 12/sip + + +14:07:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602005049 +ConnectedLineName: 796020 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 1 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Extension: s +Application: ExecIf +AppData: 1?Set(CDR(recordingfile)=external-12-79602005049-20240824-140754-1724497674.10501.wav) +Device: PJSIP/12 +State: INUSE +Variable: MACRO_DEPTH +Value: 1 +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 346 +LastCall: 1724496566 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:07:59 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602005049 +ConnectedLineName: 79602005049 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 4 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(CFIGNORE)= +Variable: MACRO_DEPTH +Value: 1 + + +14:07:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 796020050 +ConnectedLineName: 79602005049 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: blkvm-clr, + + +14:07:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602005049 +ConnectedLineName: 79602005 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 3 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +14:07:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602005049 +ConnectedLineName: 79602005049 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +14:07:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602005049 +ConnectedLineName: 79602005049 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Variable: BRIDGEPEER +Value: Lo +DestChannel: PJSIP/12-000012b3 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602005049 +DestConnectedLineName: 79602005049 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724497674.10505 +DestLinkedid: 1724497664.10490 +DialStatus: ANSWER +BridgeUniqueid: 07bb2b0a-9b37-40c3-97d3-7d3e2ca4fe5c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) + + +14:07:59 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: BRIDGEPVTCALLID +Value: 3b0b656d-6a9b-4a6f-b7f4-9191ad1dc37a +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000b22;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79602005049 +DestConnectedLineName: 79602005049 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497674.10502 +DestLinkedid: 1724497664.10490 +DialStatus: CANCEL + + +14:07:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +14:07:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Variable: ARG1 +Value: +Device: PJSIP/13 +State: NOT_INUSE +Cause: 26 +Cause-txt: Answered elsewhere +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:07:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b22;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724497674.10503 +Linkedid: 1724497664.10490 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_EXTEN +Value: +Source: 79602005049 +Destination: 13 +DestinationContext: ext-local +CallerID: "79602005049" <79602005049> +DestinationChannel: PJSIP/13-000012b2 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724497674.10503 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10520 + + +14:08:00 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: BRIDGEPEER +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: c311e5cd-bdf0-4286-8361-3e2bcc2f441e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10522 + + +14:08:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602005049 +ConnectedLineName: 79602005049 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001625;avgrxjitter=000.001070;stdevrxjitter=000.000176;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; + + +14:08:33 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/12-000012b3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000176; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +14:08:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: ANSWEREDTIME_MS +Value: 33384 +BridgeUniqueid: 07bb2b0a-9b37-40c3-97d3-7d3e2ca4fe5c +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle + + +14:08:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_PRIORITY +Value: 3 + + +14:08:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79602005049 +ConnectedLineName: 79602005049 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724497674.10505 +Linkedid: 1724497664.10490 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +14:08:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Cause: 16 +Cause-txt: Normal Clearing +Variable: MACRO_IN_HANGUP +Value: 1 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:08:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-ha +Exten: s +Priority: 1 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/12 +State: NOT_INUSE +Extension: s +Application: GotoIf +AppData: 1?theend +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:08:33 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000b21;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497674.10501 +Linkedid: 1724497664.10490 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Cause: 16 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10523 +Source: 79602005049 +Destination: 12 +DestinationContext: ext-local +CallerID: "79602005049" <79602005049> +DestinationChannel: PJSIP/12-000012b3 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 38 +BillableSeconds: 33 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724497674.10501 +UserField: + + +14:08:33 + +Event: SoftHangupRequest +Privilege: call,all +Device: Local/12@from-queue +State: NOT_INUSE +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: r +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +DestChannel: Local/12@from-queue-00000b21;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79602005049 +DestConnectedLineName: 79602005049 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497674.10500 +DestLinkedid: 1724497664.10490 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 +HoldTime: 5 +TalkTime: 34 +Reason: agent +Variable: BRIDGEPEER +Value: +BridgeUniqueid: c311e5cd-bdf0-4286-8361-3e2bcc2f441e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing + + +14:08:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012ae +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 +BridgeUniqueid: c311e5cd-bdf0-4286-8361-3e2bcc2f441e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +14:08:33 + +Event: Cdr +Privilege: cdr,all +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: PJSIP/rt_769402-000012ae +ActionID: 10525 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Source: 79602005049 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79602005049" <79602005049> +DestinationChannel: Local/12@from-queue-00000b21;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 48 +BillableSeconds: 48 + + +14:08:33 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/RT_769402 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79602005049 +CallerIDName: 79602005049 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724497664.10490 +Linkedid: 1724497664.10490 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/rt_769402 +State: NOT_INUSE +Source: 79602005049 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79602005049" <79602005049> +DestinationChannel: Local/13@from-queue-00000b22;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 5 +BillableSeconds: 5 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724497664.10490 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: + + +14:09:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.002875;avgrxjitter=000.000182;stdevrxjitter=000.000238;mintxjitter=000.000375;maxtxjitter=000.130750;avgtxjitter=000.009156;stdevtxjitter=000.031397; + + +14:09:01 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724497664.10495 +Linkedid: 1724497653.10489 +Variable: RTPAUDIOQOSMESBRIDGED +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000238; mintxmes=085.367207; maxtxmes=085.367289; avgtxmes=085.367283; stdevtxmes=000.000020; + + +14:09:01 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@from-queue-00000b20;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +DestChannel: Local/10@from-queue-00000b20;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79021479067 +DestConnectedLineName: 79021479067 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497664.10495 +DestLinkedid: 1724497653.10489 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 8 +TalkTime: 69 +Reason: caller +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: fabd8748-659d-49bc-a1b7-e3d60d4fc1fa +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:09:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ad +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing + + +14:09:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: DIALEDTIME +Value: 76 +BridgeUniqueid: bebafdfb-ae79-489c-a622-b4d91794b1b2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: NOT_INUSE + + +14:09:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_CONTEXT +Value: ext-local +BridgeUniqueid: bebafdfb-ae79-489c-a622-b4d91794b1b2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +14:09:01 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_PRIORITY +Value: + + +14:09:01 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b20;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +14:09:01 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/10-000012b1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79021479067 +ConnectedLineName: 79021479067 +Language: ru +AccountCode: +Context: ext-local +Exten: 10 +Priority: 1 +Uniqueid: 1724497664.10499 +Linkedid: 1724497653.10489 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000174; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +BridgeUniqueid: bebafdfb-ae79-489c-a622-b4d91794b1b2 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/10&Custom + + +14:09:01 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-000012ad +ActionID: 10528 +AccountCode: +Source: 79021479067 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79021479067" <79021479067> +DestinationChannel: Local/12@from-queue-00000b1e;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 18 +BillableSeconds: 18 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724497653.10489 +UserField: +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 313 +LastCall: 1724497741 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724497653.10489 +Linkedid: 1724497653.10489 +Variable: MACRO_CONTEXT +Extension: s +Application: Hangup +AppData: + + +14:09:01 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: RTPAUDIOQOSMES +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10529 +Source: 79021479067 +Destination: 194 +DestinationContext: ext-queues + + +14:09:01 + +Event: Cdr +Privilege: cdr,all +AccountCode: +Source: 79021479067 +Destination: 10 +DestinationContext: ext-local +CallerID: "79021479067" <79021479067> +Channel: Local/10@from-queue-0 +DestinationChannel: Local/10@from-queue-00000b20;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 76 +BillableSeconds: 76 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724497653.10489 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79021479067 +CallerIDName: 79021479067 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497664.10496 +Linkedid: 1724497653.10489 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE + + +14:09:01 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: LOCAL/10@FROM-QUEUE +ActionID: 10530 + + +14:09:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724497775.10506 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:09:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724497775. +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-140935 +Variable: __YEAR +Value: 2024 + + +14:09:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:09:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +14:09:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:09:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +14:09:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +14:09:35 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +14:09:35 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +14:09:35 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 14 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: __REVERSAL_REJECT +Value: FALSE + + +14:09:35 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 79217365096 +Application: Wait +AppData: 1 + + +14:09:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +14:09:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 2 +Application: AGI +AppData: agi + + +14:09:36 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +CommandId: 1511850927 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +14:09:36 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +CommandId: 240742770 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +14:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: DB_RESULT +Value: +Extension: 2 +Application: Set +AppData: DEVICE_STATE(Custom + + +14:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 194 +Application: Macro +AppData: user-callerid, +Variable: MACRO_DEPTH +Value: 1 + + +14:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=Megafon_3-000012b4 + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724497775.10506 +Linkedid: 1 +Variable: AMPUSER +Value: 79022833760 +Extension: s +Application: Set +AppData: AMPUSER=79022833760 + + +14:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 11 +Uniqueid: +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7902283376 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +14:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7902 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +14:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7902283376 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +14:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: e +Exten: 194 +Priority: 23 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +14:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: s +Application: GotoIf +AppData: 11?initialized +Variable: LOCAL(ARGC) +Value: 3 + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:09:37 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 1 +Priority: 32 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +14:09:37 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 194 +Application: QueueLog +AppData: 194,1724497775.10506,NONE,DID,79217365096 + + +14:09:46 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:09:46 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497775.10 +Linkedid: 1724497775.10506 +Variable: QUEUEJOINTIME +Value: 1724497786 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497786.10507 +Linkedid: 1724497775.10506 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497786.10507 +Linkedid: 1724497775.10506 +Variable: __RINGINGSENT +Value: TRUE + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497786.10507 +Linkedid: 1724497775.10506 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: __FROMQUEUEEXTEN +Value: 79022833760 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: __TIMESTR +Value: 20240824-140935 + + +14:09:46 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b23;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724497786.10507 +LocalOneLinkedid: 1724497775.10506 +LocalTwoChannel: Local/12@from-queue-00000b23;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79022833760 +LocalTwoCallerIDName: 79022833760 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724497786.10508 +LocalTwoLinkedid: 1724497775.10506 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b23;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: en +DestAccountCode: + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497786.10509 +Linkedid: 1724497775.10506 +DestChannel: Local/12@from-queue-00000b23;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724497786.10507 +DestLinkedid: 1724497775.10506 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497786.10509 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497786.10509 +Linkedid: 1724497775.10506 +Variable: __DIRECTION +Value: + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000012b4 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: QAGENT +Value: 12 +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +14:09:46 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: __DIRECTION +Value: +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 4 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +LocalOneChannel: Local/13@from-queue-00000b24;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724497786.10509 +LocalOneLinkedid: 1724497775.10506 +LocalTwoChannel: Local/13@from-queue-00000b24;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79022833760 +LocalTwoCallerIDName: 79022833760 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724497786.10510 +LocalTwoLinkedid: 1724497775.10506 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000b24;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724497786.10509 +DestLinkedid: 1724497775.10506 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +Extension: 12 +Application: GotoIf +AppData: 1?194,1 +DialString: Local/13@from-queue/n + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;1 +ChannelState: 0 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: __SIGNORE +Value: TRUE +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497786.10511 +Linkedid: 1724497775.10506 +Variable: __TTL +Value: 64 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497786.10511 +Linkedid: 1724497775.10506 +Variable: __MON_FMT +Value: wav +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497786 +Linkedid: 1724497775.10506 +Variable: ARG4 +Value: 0 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724497786 +Linkedid: 1724497775.10506 +Variable: __RINGINGSENT +Value: TRUE +Extension: s +Application: Macro +AppData: user-callerid, + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: TOUCH_MONITOR +Value: 1724497786.10508 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724497786.10508 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: CHANCONTEXT +Value: from-queue-00000b23;2 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b23;2 +LocalOneChannel: Local/10@from-queue-00000b25;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724497786.10511 +LocalOneLinkedid: 1724497775.10506 +LocalTwoChannel: Local/10@from-queue-00000b25;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79022833760 +LocalTwoCallerIDName: 79022833760 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724497786.10512 +LocalTwoLinkedid: 1724497775.10506 +LocalOptimization: No + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7902 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000b23;2 +DestChannel: Local/10@from-queue-00000b25;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724497786.10511 +DestLinkedid: 1724497775.10506 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000b23;2 +DialString: Local/10@from-queue/n + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000b23;2 +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 11 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: CALLERID(number)=79022833760 +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: 13 +Application: Set +AppData: QAGENT=13 +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: 13 +Application: GotoIf +AppData: 1?ext-local,13,1 +Variable: DB_RESULT +Value: 0 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG1 +Value: novm + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: ARG1 +Value: novm +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: LOCAL(ARG3) +Value: dontcare +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724497786 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-1409 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: s +Application: GotoIf +AppData: 5?checkaction +Variable: MACRO_DEPTH +Value: 1 + + +14:09:46 + +Event: Newexten +Privilege: d +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: DB_RESULT +Value: yes +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: LOCAL(ARG1) +Value: yes +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Return() + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: RECFROMEXTEN +Value: 79022833760 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79022833760) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79022833760-20240824-140946-1724497786.10508.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-12-79022833760-20240824-140946-1724497786.10508.wav + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING +Variable: __REC_STATUS +Value: RECORDING + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 +Variable: MACRO_CONTEXT +Value: ext-local + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 792 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: CHANCONTEXT +Value: from-queue-00000b25;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b25;2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: CHANEXTEN=10 +Variable: CHANEXTEN +Value: 10 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724497 +Linkedid: 1724497775.10506 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: __CALLEE_ACCOUNCODE +Value: + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: CALLERID(name)=79022833760 +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 +Variable: MACRO_EXTEN +Value: s + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724497786.10510 +Linkedid: 17244977 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b24;2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79022833760 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=13@from +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 172449778 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724497786.10508 +Linkedid: 1724 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?skip1 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 13 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=2) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12 +Variable: THISDIAL +Value: PJSIP/12 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: dstring +Application: NoOp +AppData: Debug +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: CHANNEL(language)=ru + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial +Exten: s +Priority: 54 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_CONTEXT +Value: ext-local +Extension: dstring +Application: Set +AppData: ITER=2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=10 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724497786 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +14:09:46 + +Event: +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 1 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: s +Application: Gosu +AppData: 0?skiptrace +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 31 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724497786.10508 +Linkedid: 1724497 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: ANSWEREDTIME_ +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: +Application: Set +AppData: CALLTYPE=external + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79022833760-20240824-140946-1724497786.10512.wav,abi(), + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000b25;2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497786.10513 +Linkedid: 1724497775.10506 +Variable: __PICKUPMARK +Value: 12 + + +14:09:46 + +Event: VarSet +Privilege: +Channel: PJSIP/12-000012b5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497786.10513 +Linkedid: 1724497775.10506 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000012b4 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724497786.10513 +Linkedid: 1724497775.10506 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012b5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724497786.10513 +Linkedid: 1724497775.10506 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-si +Value: 0 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724497786.1 +Linkedid: 1724497775.10506 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG1 +Value: + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: +Priority: 7 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724497775.10506 +Variable: DEXTEN +Value: 10 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: ctset +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 790228 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +14:09:46 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: DB_RESULT +Value: Регистратура_3 +Extension: s +Application: GotoIf +AppData: 1?godial + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +14:09:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: DIALEDPEERNAME +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79022833760 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: __MON_FMT +Value: wav + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: __RINGTIMER +Value: 60 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 2 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: Set +AppData: TECH=PJSIP + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724497786.10510 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79022833760 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79022833760 and 13 + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79022833760-20240824-140946-1724497786.10510 +Variable: MACRO_DEPTH +Value: 1 + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +14:09:47 + +Event: Newexten +Privilege: +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +DestChannel: PJSIP/12-000012b5 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724497786.10513 +DestLinkedid: 1724497775.10506 +DialString: 12/sip +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-che +Exten: recordcheck +Priority: 25 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +DestChannel: Local/12@from-queue-00000b23;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497786.10507 +DestLinkedid: 1724497775.10506 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: exten +Priority: 12 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=13 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 13 +Extension: dstring +Application: Set +AppData: DEVICES=13 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: dstring +Priority: 14 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-o +Exten: ctset +Priority: 2 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724497 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_2 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +14:09:47 + +Event: DialBegin +Privilege: call,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: PROGRESSTIME_MS +Value: +DestChannel: + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012b7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497786.10515 +Linkedid: 1724497775.10506 +Variable: __MIXMON_ID +Value: + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012b7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724497786.10515 +Linkedid: 1724497775.10506 +Variable: __EXTTOCALL +Value: 13 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012b7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 172449 +Linkedid: 1724497775.10506 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000012b4 + + +14:09:47 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012b7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724497786.10515 +Linkedid: 1724497775.10506 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +14:09:47 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012b7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724497786.10515 +Linkedid: 1724497775.10506 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-sipheaders_s_4 +Value: + + +14:09:47 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: GOSUB_RETVAL +Value: +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/13@from-queue-00000b24;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724497786.10515 +DestLinkedid: 1724497775.10506 +DialStatus: RINGING +DialString: 13/sip + + +14:09:47 + +Event: Registry +Privilege: system,all +ChannelType: PJSIP +Username: sip +Domain: sip +Status: Registered + + +14:09:49 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Variable: RINGTIME_MS +Value: 3235 +DestChannel: Local/12@from-queue-00000b23;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497786.10507 +DestLinkedid: 1724497775.10506 +DialStatus: RINGING + + +14:09:49 + +Event: QueueMemberStatus +Privilege: agent,all +Device: PJSIP/12 +State: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:09:49 + +Event: DialState +Privilege: call,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 3522 +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing +DestChannel: PJSIP/10-000012b6 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724497786.10514 +DestLinkedid: 1724497775.10506 +DialStatus: RINGING + + +14:09:49 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 313 +LastCall: 1724497741 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +DestChannel: Local/10@from-queue-00000b25;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497786.10511 +DestLinkedid: 1724497775.10506 +DialStatus: RINGING + + +14:09:50 + +Event: DialState +Privilege: call,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/13 +State: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 4244 +DestChannel: PJSIP/13-000012b7 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724497786.10515 +DestLinkedid: 1724497775.10506 +DialStatus: RINGING + + +14:09:51 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/10-000012b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/10&Custom +Status: 1 +StatusText: InUse +Device: PJSIP/10 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm +Queue: 195 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint + + +14:09:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 790228 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: CFIGNORE +Value: +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 313 +LastCall: 1724497741 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Set +AppData: CFIGNORE= + + +14:09:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000012b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +14:09:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000012b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000012b4)= + + +14:09:51 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=10/sip + + +14:09:51 + +Event: Newstate +Privilege: call,all +Channel: Local/10@from-queue-00000b25;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +DestChannel: PJSIP/10-000012b6 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724497786.10514 +DestLinkedid: 1724497775.10506 +DialStatus: ANSWER +BridgeUniqueid: 2ffc7da2-d93c-4ff4-96fb-667fa6f1a725 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +14:09:51 + +Event: HangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/12@from-queue-00000b23;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497786.10507 +DestLinkedid: 1724497775.10506 +DialStatus: CANCEL + + +14:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/13@from-queue-00000b24;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724497786.10509 +DestLinkedid: 1724497775.10506 +DialStatus: CANCEL +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 + + +14:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10508 +Linkedid: +DestChannel: PJSIP/12-000012b5 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79022833760 +DestConnectedLineName: 79022833760 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724497786.10513 +DestLinkedid: 1724497775.10506 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +RingTime: 5 +BridgeUniqueid: 2ffc7da2-d93c-4ff4-96fb-667fa6f1a725 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Extension: s +Application: AppDial +AppData: (Outgoing Line) +DialStatus: CANCEL +Variable: MACRO_DEPTH +Value: 1 + + +14:09:52 + +Event: VarSet +Privilege: dial +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: ARG1 +Value: +Source: 79022833760 +Destination: 12 +DestinationContext: ext-local +CallerID: "79022833760" <79022833760> +DestinationChannel: PJSIP/12-000012b5 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724497786.10508 +UserField: +BridgeUniqueid: 5757cf2e-3ecb-4519-90b3-bcc922715b2d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +14:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_IN_HANGUP +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: 2ffc7da2-d93c-4ff4-96fb-667fa6f1a725 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +14:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b23;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724497786.10508 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Extension: s +Application: Hangup +AppData: + + +14:09:52 + +Event: DialEnd +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: BRIDGEPEER +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: 5757cf2e-3ecb-4519-90b3-bcc922715b2d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10531 + + +14:09:52 + +Event: VarSet +Privilege: dialplan +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_PRIORITY +Value: 3 + + +14:09:52 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +14:09:52 + +Event: DeviceSt +Privilege: call,all +Channel: PJSIP/13-000012b7 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724497786.10515 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 26 +Cause-txt: Answered elsewhere + + +14:09:52 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b24;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Variable: MACRO_CONTEXT +Value: +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10532 +Extension: s +Application: Hangup +AppData: + + +14:09:52 + +Event: UserEvent +Privilege: user,all +AccountCode: +Source: 79022833760 +Destination: 13 +DestinationContext: ext-local +CallerID: "79022833760" <79022833760> +Channel: LOCAL/13@FROM-QUEUE +DestinationChannel: PJSIP/13-000012b7 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724497786.10510 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10536 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724497786.10510 +Linkedid: 1724497775.10506 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/13@from-queue +State: NOT_INUSE + + +14:11:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +14:11:00 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 2ffc7da2-d93c-4ff4-96fb-667fa6f1a725 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +14:11:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: 79022833760 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: ARG3 +Value: 0 + + +14:11:00 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b25;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724497786.10512 +Linkedid: 1724497775.10506 +Variable: MACRO_EXTEN +Value: + + +14:11:00 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012b6 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79022833760 +ConnectedLineName: 79022833760 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724497786.10514 +Linkedid: 1724497775.10506 +Variable: R +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:11:00 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: 79022833760 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Cause: 16 +Variable: BRIDGEPEER +Value: 1 +BridgeUniqueid: 5757cf2e-3ecb-4519-90b3-bcc922715b2d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10537 + + +14:11:00 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Device: Local/10@from-queue +State: NOT_INUSE + + +14:11:00 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 79022833760 +Destination: 10 +DestinationContext: ext-local +CallerID: "79022833760" <79022833760> +Channel: PJSIP/Megafon_3-000012b4 +DestinationChannel: PJSIP/10-000012b6 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 73 +BillableSeconds: 68 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724497786.10512 +UserField: +Device: Local/10@from-queue +State: NOT_INUSE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Extension: s +Application: Hangup +AppData: +BridgeUniqueid: 5757cf2e-3ecb-4519-90b3-bcc922715b2d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 5 +TalkTime: 69 +Reason: agent +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10538 +Variable: MACRO_EXTEN + + +14:11:00 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-000012b4 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79022833760 +CallerIDName: 79022833760 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724497775.10506 +Linkedid: 1724497775.10506 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000155; mintxmes=020.000000; maxtxmes=085.367289; avgtxmes=081.267207; stdevtxmes=015.819129; +Source: 79022833760 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79022833760" <79022833760> +DestinationChannel: Local/12@from-queue-00000b23;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 16 +BillableSeconds: 16 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724497775.10506 +UserField: + + +14:11:00 + +Event: UserEvent +Privilege: user,all +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/MEGAFON_3 +ActionID: 10540 +AccountCode: +Source: 79022833760 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79022833760" <79022833760> +DestinationChannel: Local/10@from-queue-00000b25;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 73 +BillableSeconds: 73 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724497775.10506 +UserField: + + +14:14:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T14 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +14:14:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T14 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +14:34:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T14 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +14:34:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T14 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +14:45:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +14:45:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724499909.10516 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:45:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724499909. +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-144509 +Variable: __YEAR +Value: 2024 + + +14:45:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:45:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +14:45:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:45:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +14:45:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +14:45:10 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +14:45:10 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +14:45:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 19 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: AGI +AppData: agi + + +14:45:11 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +CommandId: 1813678188 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724499909.105 +Linkedid: 1724499909.10516 +CommandId: 1561965350 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724499909.1 +Linkedid: 1724499909.10516 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724499909. +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: AMPUSER +Value: 79539020670 +Extension: s +Application: Set +AppData: AMPUSER=79539020670 + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +14:45:11 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +14:45:11 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7953 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:45:11 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3- +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +14:45:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +14:45:20 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: 194 +Application: QueueLog +AppData: 194,1724499909.10516,NONE,DID,79217365096 + + +14:45:20 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:45:20 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499909.10 +Linkedid: 1724499909.10516 +Variable: QUEUEJOINTIME +Value: 1724499920 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724499920.10517 +Linkedid: 1724499909.10516 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724499920.10517 +Linkedid: 1724499909.10516 +Variable: __RINGINGSENT +Value: TRUE + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724499920.10517 +Linkedid: 1724499909.10516 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: __FROMQUEUEEXTEN +Value: 79539020670 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: __TIMESTR +Value: 20240824-144509 + + +14:45:20 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b26;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724499920.10517 +LocalOneLinkedid: 1724499909.10516 +LocalTwoChannel: Local/12@from-queue-00000b26;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539020670 +LocalTwoCallerIDName: 79539020670 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724499920.10518 +LocalTwoLinkedid: 1724499909.10516 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b26;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: en +DestAccountCode: + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499920.10519 +Linkedid: 1724499909.10516 +DestChannel: Local/12@from-queue-00000b26;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724499920.10517 +DestLinkedid: 1724499909.10516 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499920.10519 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499920.10519 +Linkedid: 1724499909.10516 +Variable: __DIRECTION +Value: + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000012b8 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: __MON_FMT +Value: wav + + +14:45:20 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b27;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724499920.10519 +LocalOneLinkedid: 1724499909.10516 +LocalTwoChannel: Local/13@from-queue-00000b27;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79539020670 +LocalTwoCallerIDName: 79539020670 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724499920.10520 +LocalTwoLinkedid: 1724499909.10516 +LocalOptimization: No + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724499920.10521 +Linkedid: 1724499909.10516 +DestChannel: Local/13@from-queue-00000b27;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724499920.10519 +DestLinkedid: 1724499909.10516 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724499920.10521 +Linkedid: 1724499909.10516 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724499920.10521 +Linkedid: 1724499909.10516 +Variable: __DAY +Value: 24 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: DIAL_OPTIONS +Value: HhTtrM + + +14:45:20 + +Event: Va +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: __FROM_DID +Value: 79217365096 + + +14:45:20 + +Event: LocalBridge +Privilege: call,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b28;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724499920.10521 +LocalOneLinkedid: 1724499909.10516 +LocalTwoChannel: Local/10@from-queue-00000b28;2 + + +14:45:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 3 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +DestChannel: Local/10@from-queue-00000b28;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724499920.10521 +DestLinkedid: 1724499909.10516 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 13 +Application: GotoIf +AppData: __FROMQ=true +Variable: __FROMQ +Value: true + + +14:45:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 +Variable: ARG4 +Value: 0 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724499920.10520 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7953 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: CHANEXTENCONTEXT +Value: 13@from-queue-00000b27;2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000b27;2 + + +14:45:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000b27;2 +Variable: MACRO_DEPTH +Value: 2 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 11 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +14:45:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: CALLERID(number)=79539020670 +Variable: MACRO_DEPTH +Value: 2 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: 12 +Application: Set +AppData: QAGENT=12 +Variable: MACRO_DEPTH +Value: 2 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 +Variable: DB_RESULT +Value: 0 + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: ARG1 +Value: novm + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +14:45:20 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: CHANCONTEXT +Value: from +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +14:45:20 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: CALLERID(number)=79539020670 +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724499920.1 +Linkedid: 1724499909.10516 +Variable: __TTL +Value: 63 +Extension: s +Application: Set +AppData: __TTL=63 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 52 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: CDR(cnam)=79539020670 +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: DB_RESULT +Value: EXTENSION +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONT + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79539020670 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=10@from +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_PRIORITY +Value: 3 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 +Variable: MACRO_DEPTH +Value: 1 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-144520 +Variable: MACRO_DEPTH +Value: 1 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7953902067 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Record + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARGC) +Value: 3 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES +Variable: __REC_POLICY_MODE +Value: YES + + +14:45:21 + +Event: Newexten +Privilege: dialplan, +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79539020670) +Variable: MACRO_DEPTH +Value: 1 + + +14:45:21 + +Event: VarS +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79539020670-20240824-144520-1724499920.10520.wav +Variable: MACRO_DEPTH +Value: 1 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: THISDIAL +Value: PJSIP/13/sip + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Return +AppData: + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Aler + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +14:45:21 + +Event: +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 172449992 +Linkedid: 1724499909.10516 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012b9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499920.10523 +Linkedid: 1724499909.10516 +Variable: __PICKUPMARK +Value: 13 + + +14:45:21 + +Event: VarSet +Privilege: +Channel: PJSIP/13-000012b9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499920.10523 +Linkedid: 1724499909.10516 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000012b8 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012b9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724499920.10523 +Linkedid: 1724499909.10516 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012b9 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724499920.10523 +Linkedid: 1724499909.10516 +Extension: s +Application: While +AppData: 0 +Variable: func-apply-si +Value: 0 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724499920.10517 +Linkedid: 1724499909.10516 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __EXTTOCALL=12 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: LOCAL(ARG1) +Value: exten +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 795390206 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 3 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724499920 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: __MON_FMT=wav +Variable: MACRO_DEPTH +Value: 1 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 14 +Uniqueid: 1724499920.10518 +Linkedid: +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 17 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79539020670 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MIXMONITOR_FILENAME +Value: /var/spool +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79539020670-20240824-144520-1724499920.10518.wav,abi(), + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724499920.1 +Linkedid: 1724499909.10516 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: +Priority: 7 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: +Linkedid: 1724499909.10516 +Variable: DEXTEN +Value: 12 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next1 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?skipset + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: ctset +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 795390 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) +Variable: ALERT_INFO +Value: + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: DB_RESULT +Value: Регистратура_1 +Extension: s +Application: GotoIf +AppData: 1?godial + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: s +Application: MacroExit +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: CWRING +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: DIALEDPEERNAME +Value: +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79539020670 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.105 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_PRIORITY +Value: 3 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 +Variable: MACRO_DEPTH +Value: 1 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-reco +Exten: s +Priority: 1 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79539020670 + + +14:45:21 + +Event: VarSet +Privilege: dialplan +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-ch +Exten: exten +Priority: 1 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79539020670 and 10 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: MACRO_DEPTH +Value: 1 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79539020670) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 17 +Linkedid: 1724499909.10516 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +14:45:21 + +Event: Newstate +Privilege: call,all +Channel: Loc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79539020670-20240824-144520-1724499920.10522.wav +Variable: MACRO_DEPTH +Value: 1 +DestChannel: PJSIP/13-000012b9 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724499920.10523 +DestLinkedid: 1724499909.10516 +DialString: 13/sip + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012ba +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499920.10524 +Linkedid: 1724499909.10516 +Device: Local/13@from-queue +State: INUSE +DestChannel: Local/13@from-queue-00000b27;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499920.10519 +DestLinkedid: 1724499909.10516 +DialStatus: RINGING +Variable: __REC_STATUS +Value: RECORDING + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012ba +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499920.10524 +Linkedid: 1724499909.10516 +Variable: __DAY +Value: 24 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012ba +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499920.10524 +Linkedid: 1724499909.10516 +Variable: __ +Value: 0 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012ba +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724499920.10524 +Linkedid: 1724499909.10516 +Variable: __DIRECTION +Value: +Extension: 12 +Application: AppDial + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012ba +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724499920.10524 +Linkedid: 1724499909.10516 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-che +Exten: recordcheck +Priority: 25 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: exten +Priority: 12 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Return +AppData: + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DEXTEN=10 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?cf,1() + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-qu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 10 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: ITER +Value: 1 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 10 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?doset + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: dstring +Priority: 14 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-o +Exten: ctset +Priority: 2 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Extension: ctset +Application: Return +AppData: +Variable: ARGC +Value: + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724499 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?qwait,1() + + +14:45:21 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: DB_RESULT +Value: Регистратура_3 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: MacroExit +AppData: + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: DIALSTATUS +Value: +Extension: s +Application: Dial +AppData: PJSIP/10/sip + + +14:45:21 + +Event: VarSet +Privilege: call,all +Channel: PJSIP/10-000012bb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Variable: PROGRESSTIME_MS +Value: + + +14:45:21 + +Event: VarSet +Privilege: dia +Channel: PJSIP/10-000012bb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Variable: __FROMEXTEN +Value: 79539020670 + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012bb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Variable: __FROMQ +Value: true + + +14:45:21 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012bb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/12-000012ba +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 + + +14:45:21 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +DestChannel: Local/10@from-queue-00000b28;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724499920.10525 +DestLinkedid: 1724499909.10516 +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE +DialString: 10/sip + + +14:45:21 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T14 +Severity: Informational +Service: AMI +EventVersion: 1 +AccountID: admin +SessionID: 0x7f86dc007460 +LocalAddress: IPV4/TCP/0.0.0.0/5038 +RemoteAddress: IPV4/TCP/127.0.0.1/40822 +UsingPassword: 0 +SessionTV: 2024-08-24T14 + + +14:45:23 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012b9 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724499920.10523 +Linkedid: 1724499909.10516 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +14:45:23 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: RINGTIME_MS +Value: 2962 +Device: PJSIP/13 +State: RINGING +DestChannel: Local/13@from-queue-00000b27;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499920.10519 +DestLinkedid: 1724499909.10516 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:45:24 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3602 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 314 +LastCall: 1724497860 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +DestChannel: PJSIP/10-000012bb +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724499920.10525 +DestLinkedid: 1724499909.10516 +DialStatus: RINGING + + +14:45:24 + +Event: QueueMemberStatus +Privilege: agent,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 4205 +DestChannel: PJSIP/12-000012ba +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724499920.10524 +DestLinkedid: 1724499909.10516 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:45:32 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: DIALEDPEERNAME +Value: PJSIP/10-000012bb + + +14:45:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000012bb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: macro-au +Exten: 10 +Priority: 1 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Extension: s +Application: Macro +AppData: auto-blkvm +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/10 +State: INUSE +Hint: PJSIP/10&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 314 +LastCall: 1724497860 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:45:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012bb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539020670 +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: CFIGNORE +Value: +Extension: s +Application: Set +AppData: MASTER_CHANNEL(CFIGNORE)= + + +14:45:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012bb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регист +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 7 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Extension: s +Application: Macro +AppData: blkvm-clr, +Variable: MACRO_CONTEXT +Value: macro-auto-blkvm + + +14:45:32 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000012bb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 795390206 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 2 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: GOSUB_RETVAL= + + +14:45:32 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012bb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 9 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) + + +14:45:33 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: MACRO_PRIORITY +Value: +DestChannel: Local/10@from-queue-00000b28;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499920.10521 +DestLinkedid: 1724499909.10516 +DialStatus: ANSWER +BridgeUniqueid: 8f5f9bda-7534-4b2c-8376-8fba602d167b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:45:33 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724499920.10517 +Linkedid: 1724499909.10516 +DestChannel: Local/12@from-queue-00000b26;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499920.10517 +DestLinkedid: 1724499909.10516 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:45:33 + +Event: DialEnd +Privilege: call,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 13 +ConnectedLineName: Регистратур +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Device: Queue +State: NOT_INUSE +Queue: 194 +Position: 1 +Count: 0 +Variable: QUEUEPOSITION +Value: 1 +DestChannel: Local/10@from-queue-00000b28;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499920.10521 +DestLinkedid: 1724499909.10516 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 12 +RingTime: 12 +BridgeUniqueid: 8a6ecd7c-ecb8-4a01-884a-9163b2c4ba9e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +14:45:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_PRIORITY +Value: 3 + + +14:45:33 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_PRIORITY +Value: +Cause: 16 + + +14:45:33 + +Event: ExtensionStatus +Privilege: call,all +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: 13 +Priority: 1 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Device: Local/10@from-queue +State: INUSE +Hint: PJSIP/13&Custom + + +14:45:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000012bb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +DestChannel: PJSIP/12-000012ba +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724499920.10524 +DestLinkedid: 1724499909.10516 +DialStatus: CANCEL +Variable: ARG3 +Value: 0 +Cause: 26 +Cause-txt: Answered elsewhere + + +14:45:33 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 8f5f9bda-7534-4b2c-8376-8fba602d167b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: ARG2 +Value: +Cause: 26 +Cause-txt: Answered elsewhere +Device: PJSIP/13 +State: NOT_INUSE +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Queue: 195 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:45:33 + +Event: Newexten +Privilege: agent,all +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/13@from-queue-00000b27;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724499920.10520 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/12 +State: NOT_INUSE +Cause: 16 + + +14:45:33 + +Event: V +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_CONTEXT +Value: ext-local + + +14:45:33 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Source: 79539020670 +Destination: 13 +DestinationContext: ext-local +CallerID: "79539020670" <79539020670> +DestinationChannel: PJSIP/13-000012b9 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 12 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724499920.10520 +UserField: +Extension: s +Application: GotoIf +AppData: 1?theend +Device: Local/13@from-queue +State: NOT_INUSE +BridgeUniqueid: 8f5f9bda-7534-4b2c-8376-8fba602d167b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +14:45:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b26;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724499920.10518 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 0 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10545 +Extension: s +Application: Hangup +AppData: + + +14:45:33 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724499920.10521 +Linkedid: 1724499909.10516 +Variable: BRIDGEPEER +Value: PJSIP/Megafon_3-000012b8 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +Source: 79539020670 +Destination: 12 +DestinationContext: ext-local +CallerID: "79539020670" <79539020670> +DestinationChannel: PJSIP/12-000012ba +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 12 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724499920.10518 +UserField: +BridgeUniqueid: 8a6ecd7c-ecb8-4a01-884a-9163b2c4ba9e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +14:45:33 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10546 + + +14:46:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: sub-record-check,s,1(in,79217365096,dontcare) + + +14:46:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __YEA +Value: 08 + + +14:46:02 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: __MON_FMT +Value: wav + + +14:46:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: FROMEXTEN +Value: 79516679774 + + +14:46:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:46:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 + + +14:46:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megaf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +14:46:03 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365 +Priority: 12 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __MOHCLASS +Value: + + +14:46:03 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 79217365096 +Application: Answer +AppData: + + +14:46:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +14:46:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +14:46:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 2 +Application: AGI +AppData: agi + + +14:46:04 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +CommandId: 2066942397 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +14:46:04 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +CommandId: 1776085921 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +14:46:04 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +CommandId: 1556071946 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +14:46:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +CommandId: 1423588861 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: + + +14:46:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: MACRO_EXTEN +Value: 194 +Extension: 194 +Application: Macro +AppData: user-callerid, + + +14:46:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: MACRO_D +Value: +Extension: s +Application: Set +AppData: CHANCONTEXT= + + +14:46:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-000012bc +Variable: MACRO_DEPTH +Value: 1 + + +14:46:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: m +Exten: s +Priority: 9 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: HOTDESKEXTEN +Value: Megafon_3 +Extension: s +Application: Set +AppData: HOTDESKEXTEN=Megafon_3 + + +14:46:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: s +Application: GotoIf +AppData: 0?report +Variable: MACRO_DEPTH +Value: 1 + + +14:46:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 17 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: AMPUSERCIDNAME +Value: +Extension: s +Application: Set +AppData: AMPUSERCIDNAME= + + +14:46:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 1 + + +14:46:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: CALLERID(number)=79516679774 +Variable: MACRO_DEPTH +Value: 1 + + +14:46:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/ +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_DEPTH +Value: 1 + + +14:46:04 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: MACRO_CONTEXT +Value: ext-queues +Extension: 194 +Application: Macro +AppData: blkvm-set,reset + + +14:46:04 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000012bc)=TRUE + + +14:46:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795166797 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 5 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: MACRO_PRIORITY +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Set(_DIAL_OPTIONS=HhTtrM(auto-blkvm)) + + +14:46:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 10 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 194 +Application: ExecIf +AppData: 0?Macro(prepend-cid,) +Variable: VQ_CIDPP +Value: + + +14:46:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 16 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: QJOINMSG +Value: custom/Privet_23_08 +Extension: 194 +Application: Set +AppData: VQ_JOINMSG= + + +14:46:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 21 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 194 +Application: Set +AppData: QOPTIONS=tR +Variable: VQ_RETRY +Value: + + +14:46:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 26 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 194 +Application: Set +AppData: VQ_AGI= +Variable: QAGI +Value: + + +14:46:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 31 +Uniqueid: 1724499962 +Linkedid: 1724499962.10526 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: VQ_POSITION +Value: + + +14:46:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-chec +Exten: s +Priority: 13 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) + + +14:46:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: recordcheck +Application: Goto +AppData: dontcare +Variable: LOCAL(ARGC) +Value: 3 + + +14:46:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: ARG2 +Value: +Extension: s +Application: Return +AppData: + + +14:46:05 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 40 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: VQ_CONFIRMMSG= + + +14:46:05 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +14:46:13 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 194 +Application: QueueLog +AppData: 194,1724499962.10526,NONE,DID,79217365096 + + +14:46:13 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:46:13 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10 +Linkedid: 1724499962.10526 +Variable: QUEUEJOINTIME +Value: 1724499973 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724499973.10527 +Linkedid: 1724499962.10526 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724499973.10527 +Linkedid: 1724499962.10526 +Variable: __RINGINGSENT +Value: TRUE + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724499973.10527 +Linkedid: 1724499962.10526 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: __FROMQUEUEEXTEN +Value: 79516679774 + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: __TIMESTR +Value: 20240824-144602 + + +14:46:13 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b29;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724499973.10527 +LocalOneLinkedid: 1724499962.10526 +LocalTwoChannel: Local/12@from-queue-00000b29;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79516679774 +LocalTwoCallerIDName: 79516679774 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724499973.10528 +LocalTwoLinkedid: 1724499962.10526 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b29;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: en +DestAccountCode: + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499973.10529 +Linkedid: 1724499962.10526 +DestChannel: Local/12@from-queue-00000b29;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724499973.10527 +DestLinkedid: 1724499962.10526 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499973.10529 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499973.10529 +Linkedid: 1724499962.10526 +Variable: __DIRECTION +Value: + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000012bc + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: __MON_FMT +Value: wav + + +14:46:13 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b2a;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724499973.10529 +LocalOneLinkedid: 1724499962.10526 +LocalTwoChannel: Local/13@from-queue-00000b2a;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79516679774 +LocalTwoCallerIDName: 79516679774 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724499973.10530 +LocalTwoLinkedid: 1724499962.10526 +LocalOptimization: No + + +14:46:13 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 4 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +DestChannel: Local/13@from-queue-00000b2a;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724499973.10529 +DestLinkedid: 1724499962.10526 +DialString: Local/13@from-queue/n +Extension: 13 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +14:46:13 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: __RINGTIMER +Value: 60 +Extension: 13 +Application: Macro +AppData: 0?Set(__CWIGNORE=) + + +14:46:13 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 + + +14:46:13 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724499973.10530 + + +14:46:13 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000b2a;2 + + +14:46:13 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: HOTDESCKCHAN +Value: 13@from-queue-00000b2a;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000b2a;2 + + +14:46:13 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: s +Application: E +AppData: 0?Set(HOTDESKCALL=1) +Variable: MACRO_DEPTH +Value: 2 + + +14:46:13 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +14:46:13 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: R +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79516679774 + + +14:46:13 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: QAGENT +Value: 12 +Extension: 12 +Application: Set +AppData: QAGENT=12 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: DB_RESULT +Value: 0 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: ARG2 +Value: 12 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPTH +Value: 2 + + +14:46:14 + +Event: VarSet +Privilege: dialpl +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: AMPUSER +Value: 79516679774 +Extension: s +Application: Set +AppData: AMPUSER=79516679774 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: HOTDESKCALL +Value: 0 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7951667977 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: s +Application: GotoIf +AppData: 1?report2 +Variable: MACRO_DEPTH +Value: 2 + + +14:46:14 + +Event: VarSet +Privilege: d +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 2 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: +Priority: 53 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: CDR(cnam)=79516679774 +Variable: MACRO_DEPTH +Value: 2 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_CONTEXT +Value: ext-local + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: __PICKUPMARK +Value: 13 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: __DAY +Value: 24 +Extension: s +Application: Set +AppData: __DAY=24 + + +14:46:14 + +Event: Newexten +Privilege: dial +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-144613 +Variable: MACRO_DEPTH +Value: 1 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 17244 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: CALLEE +Value: yes +Extension: exten +Application: Set +AppData: CALLEE=yes + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) +Variable: LOCAL(ARG3) +Value: 13 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= +Variable: MACRO_DEPTH +Value: 1 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: re +Priority: 24 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79516679774-20240824-144613-1724499973.10530.wav + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: exten +Application: Return +AppData: +Variable: ARGC +Value: + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 9 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: 2 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724499973.10530 +Linkedid: 172449996 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: s +Application: GosubI +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 43 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +14:46:14 + +Event: Newexten +Privilege: dialp +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: s +Application: NoOp +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 172449997 +Linkedid: 1724499962.10526 +Variable: DIALEDTIME +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012bd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499973.10531 +Linkedid: 1724499962.10526 +Variable: __RECORD_ID +Value: Local/13@from-queue-00000b2a;2 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012bd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499973.10531 +Linkedid: 1724499962.10526 +Variable: __PICKUPMARK +Value: 13 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012bd +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 1 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/13@from-queue-00000b2a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499973.10529 +DestLinkedid: 1724499962.10526 +DialString: 13/sip +DialStatus: RINGING + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 54 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= +Device: Local/13@from-queue +State: INUSE + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: __FR +Value: 1 +Extension: s +Application: Set +AppData: __FROMEXTEN=79516679774 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub- +Exten: s +Priority: 12 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Rin +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79516679774 and 12 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(C + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +14:46:14 + +Event: VarSet +Privilege: +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79516679774-20240824-144613-1724499973.10528 +Variable: MACRO_DEPTH +Value: 1 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 7 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Return +AppData: + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: ARG2 +Value: +Extension: exten +Application: Return +AppData: + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: ARG2 +Value: HhTtrM(auto-blkvm) +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +14:46:14 + +Event: VarSet +Privilege: +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: MACRO_DEPTH +Value: 2 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 +Variable: LOOPCNT +Value: 1 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: dstring +Application: GotoIf +AppData: 0?docheck +Variable: MACRO_DEPTH +Value: 2 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724499973.10 +Linkedid: 1724499962.10526 +Variable: ARGC +Value: +Extension: dstring +Application: Return +AppData: + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/12)=79516679774 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) +Variable: MACRO_DEPTH +Value: 2 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALE + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724499973 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: RINGTIME +Value: + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012be +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499973.10532 +Linkedid: 1724499962.10526 +Variable: __CALLFILENAME +Value: external-1 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012be +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499973.10532 +Linkedid: 1724499962.10526 +Variable: __TTL +Value: 63 + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012be +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724499973.10532 +Linkedid: 1724499962.10526 +Variable: __FROMQUEUEEXTEN +Value: 79516679774 + + +14:46:14 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012be +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724499973.10532 +Linkedid: 1724499962.10526 +Variable: LOCAL(ARGC) +Value: 0 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) + + +14:46:14 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012be +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 13 +Uniqueid: 1724499973.10532 +Linkedid: 1724499962.10526 +Extension: s +Application: Return +AppData: +Variable: func-apply-sipheaders_s_4 +Value: + + +14:46:14 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/12@from-queue-00000b29;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499973.10527 +DestLinkedid: 1724499962.10526 +DialString: 12/sip +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE + + +14:46:16 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 2975 +Hint: PJSIP/13&Custom +Status: 6 +StatusText: Ringing +DestChannel: Local/13@from-queue-00000b2a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499973.10529 +DestLinkedid: +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:46:17 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3264 +DestChannel: Local/12@from-queue-00000b29;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499973.10527 +DestLinkedid: +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:46:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +14:46:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17244 +Linkedid: 1724499985.10533 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724499985. +Linkedid: 1724499985.10533 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-144625 +Variable: __YEAR +Value: 2024 + + +14:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +14:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:46:26 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +14:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +14:46:26 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +14:46:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +14:46:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +14:46:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 2 +Application: AGI +AppData: agi + + +14:46:27 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +CommandId: 705122408 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +14:46:27 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +CommandId: 1223962897 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +14:46:27 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +CommandId: 587311524 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +14:46:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +CommandId: 1279752479 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +14:46:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724499985.105 +Linkedid: 1724499985.10533 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +14:46:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724499985.10 +Linkedid: 1724499985.10533 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +14:46:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: AMPUSER +Value: 79522006990 +Extension: s +Application: Set +AppData: AMPUSER=79522006990 + + +14:46:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +14:46:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +14:46:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +14:46:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +14:46:27 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +14:46:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +14:46:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +14:46:27 + +Event: VarSet +Privilege: di +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +14:46:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-0000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +14:46:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795220 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +14:46:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +14:46:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +14:46:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +14:46:27 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +14:46:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:46:27 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:46:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +14:46:28 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/10-000012bb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +To: 192.168.75.12 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x196b0224 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724499987.903187 +SentRTP: 7233960 +SentPackets: 2750 +SentOctets: 440000 +Report0SourceSSRC: 0x0a6e744c +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 61860 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 17 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +14:46:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 47 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 194 +Application: ExecIf +AppData: 0?Set(__MOHCLASS= +Variable: VQ_MOH +Value: + + +14:46:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 194 +Application: +AppData: QUEUEJOINTIME=1724499996 +Variable: QUEUEJOINTIME +Value: 1724499996 + + +14:46:36 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Queue: 194 +Position: 2 +Count: 2 +Class: default + + +14:46:43 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +DestChannel: Local/13@from-queue-00000b2a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499973.10527 +DestLinkedid: 1724499962.10526 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +RingTime: 30000 +Class: default +DialStatus: NOANSWER + + +14:46:43 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000b2a;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 795166 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724499973.10529 +Linkedid: 1724499962.10526 +DestChannel: Local/13@from-queue-00000b2a;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499973.10529 +DestLinkedid: 1724499962.10526 +DialStatus: CANCEL +Cause: 0 +Cause-txt: Unknown +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:46:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: r +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +DestChannel: PJSIP/13-000012bd +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724499973.10531 +DestLinkedid: 1724499962.10526 +DialStatus: CANCEL +Variable: ARG3 +Value: 0 + + +14:46:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: ARG1 +Value: + + +14:46:43 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend + + +14:46:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +14:46:43 + +Event: VarSet +Privilege: dialplan,all +Device: Local/13@from-queue +State: NOT_INUSE +Channel: Local/12@from-queue-00000b29;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcal +Exten: s +Priority: 4 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Variable: MACRO_CONTEXT +Value: + + +14:46:43 + +Event: Newexten +Privilege: dialplan,all +Device: Local/12@from-queue +State: NOT_INUSE +Exten: 13 +Context: ext-local +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +Channel: Local/13@from-queue-00000b2a;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724499973.10528 +Linkedid: 1724499962.10526 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79516679774 +Destination: 13 +DestinationContext: ext-local +CallerID: "79516679774" <79516679774> +DestinationChannel: PJSIP/13-000012bd +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 30 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724499973.10530 +UserField: +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10548 +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:46:43 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724499973.10530 +Linkedid: 1724499962.10526 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10552 + + +14:46:45 + +Event: RTCPReceived +Privilege: reporting,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842f3603 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8697731.221984 +SentRTP: 92124231 +SentPackets: 2096 +SentOctets: 335360 +Report0SourceSSRC: 0x291a5d18 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 24216 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 11 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +14:46:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: s +Application: GotoIf +AppData: 0?initialized +Variable: LOCAL(ARGC) +Value: 3 + + +14:46:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724500010.10534 +Linkedid: 1724 +Variable: __YEAR +Value: 2024 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +14:46:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: REC_POLICY_MODE_SAVE +Value: +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +14:46:50 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG1) +Value: dontcare + + +14:46:50 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:46:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 +Variable: __FROM_DID +Value: 79217365096 + + +14:46:50 + +Event: Newexten +Privilege: +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +14:46:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 12 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +14:46:50 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +To: 193.201.229.19 +From: 192.168.75.10 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x1bbf04e8 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724500010.436688 +SentRTP: 1725116728 +SentPackets: 4954 +SentOctets: 792487 +Report0SourceSSRC: 0x0001023a +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 5595 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 3 +Report0LSR: 903732068 +Report0DLSR: 3.1130 + + +14:46:50 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 17 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: NoOp +AppData: + + +14:46:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +14:46:51 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: 2 +Application: AGI +AppData: agi + + +14:46:52 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +CommandId: 1919145009 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +14:46:52 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +CommandId: 860292949 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +14:46:52 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +CommandId: 153750913 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +14:46:52 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +CommandId: 464763683 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success + + +14:46:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.105 +Variable: DB_RESULT +Value: +Extension: 2 +Application: GotoIf +AppData: 1?ext-queues,194,1 + + +14:46:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANCO + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: CHANEXTEN=Megafon_3-000012c0 + + +14:46:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=Megafon_3-000012c0 + + +14:46:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user +Exten: s +Priority: 12 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +14:46:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 16 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?limit + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 29 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report2 + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: s +Application: GotoIf +AppData: 1?continue +Variable: MACRO_DEPTH +Value: 1 + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: CDR(cnum)=79217072323 +Variable: MACRO_DEPTH +Value: 1 + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: __FROMQUEUEEXTEN +Value: 79217072323 + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 2 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000012c0)=TRUE + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: MacroExit +AppData: + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 9 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: 194 +Application: Set +AppData: VQ_CIDPP= +Variable: QCIDPP +Value: + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 15 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: 194 +Application: Set +AppData: QJOINMSG=custom/Privet_23_08 +Variable: __RVOL_MODE +Value: dontcare + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 25 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: 194 +Application: Set +AppData: QAGI= +Variable: VQ_GOSUB +Value: + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 30 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: 194 +Application: Set +AppData: VQ_POSITION= +Variable: VQ +Value: + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724500010.10 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: LOCAL(ARGC) +Value: 3 + + +14:46:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: r +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: LOCAL(ARGC) +Value: 3 + + +14:46:52 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 20 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +14:46:52 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 34 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: __QC_CONFIRM +Value: 0 +Extension: 194 +Application: Set +AppData: __QC_CONFIRM=0 + + +14:46:52 + +Event: RTCPReceived +Privilege: reporting,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) +Variable: VQ_CONFIRMMSG +Value: +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842f35e2 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8697698.850997 +SentRTP: 7429430 +SentPackets: 5093 +SentOctets: 814880 +Report0SourceSSRC: 0x1bbf04e8 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 21138 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 13 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +14:46:55 + +Event: Newchannel +Privilege: call,all +Channel: Local/12@from-queue-00000b2b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500015.10535 +Linkedid: 1724499962.10526 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500015.10535 +Linkedid: 1724499962.10526 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: DIAL_OPTIONS +Value: HhTtrM(auto-blkvm) + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500015.10535 +Linkedid: 1724499962.10526 +Variable: __FROM_DID +Value: 79217365096 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: __QC_CONFIRM +Value: 0 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: __CALLEE_ACCOUNCODE +Value: + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: __MONTH +Value: 08 + + +14:46:55 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b2b;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500015.10535 +LocalOneLinkedid: 1724499962.10526 +LocalTwoChannel: Local/12@from-queue-00000b2b;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79516679774 +LocalTwoCallerIDName: 79516679774 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724500015.10536 +LocalTwoLinkedid: 1724499962.10526 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b2b;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500015.10535 +DestLinkedid: 1724499962.10526 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500015.10537 +Linkedid: 1724499962.1 +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500015.10537 +Linkedid: 1724499 +Variable: __RINGINGSENT +Value: TRUE + + +14:46:55 + +Event: VarSet +Privilege: +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: DIALEDPEERNUMBER +Value: 13@from-queue/n + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: __TTL +Value: 64 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: __YEAR +Value: 2024 + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b2c;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500015.10537 +LocalOneLinkedid: 1724499962.10526 +LocalTwoChannel: Local/13@from-queue-00000b2c;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79516679774 +LocalTwoCallerIDName: 79516679774 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724500015.10538 +LocalTwoLinkedid: 1724499962.10526 +LocalOptimization: No +DestChannel: Local/13@from-queue-00000b2c;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500015.10537 +DestLinkedid: 1724499962.10526 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +DestChannel: Local/13@from-queue-00000b2c;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724500015.10537 +DestLinkedid: 1724499962.10526 +DialString: Local/13@from-queue/n +Variable: DB_RESULT +Value: EXTENSION +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: 12 +Application: Ma +AppData: 0?Set(__CWIGNORE=) +Variable: QAGENT +Value: 13 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: ARG4 +Value: 0 +Extension: 13 +Application: Set +AppData: __FROMQ=true + + +14:46:55 + +Event: VarSet +Privilege: +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724500015.10536 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-calle +Exten: 13 +Priority: 4 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: 13 +Application: GotoIf +AppData: 1?194,1 +Variable: CHANCONTEXT +Value: from + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: CALLERID(number)=79516679774 +Variable: MACRO_DEPTH +Value: 2 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 9 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEP +Value: 12@from +Extension: s +Application: Set +AppData: HOTDESKEXTEN=12@from + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: e +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 33 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: 13 +Application: Macro +AppData: exten-vm,novm,13,0,0,0 + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724500015.10538 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=13 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 13@from-queue-00000b2c;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000b2c;2 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) +Variable: MACRO_DEPTH +Value: 2 + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLER + + +14:46:55 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000b2b;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500015.10535 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +14:46:55 + +Event: Va +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +14:46:55 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: exten +Application: Set +AppData: CALLTYPE=external +Variable: MACRO_DEPTH +Value: 1 + + +14:46:55 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500015.10537 +Linkedid: 1724499962.10526 +Variable: CALLEE +Value: yes +Extension: 194 +Application: AppQueue +AppData: (Ou + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: RingGroupM +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) +Variable: LOCAL(ARGC) +Value: 3 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) +Variable: LOCAL(ARG2) +Value: 13 + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724500 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Goto +AppData: startrec + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79516679774) + + +14:46:56 + +Event: VarSet +Privilege: dialp +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-12-79516679774-20240824-144655-1724500015.10536.wav +Variable: MACRO_DEPTH +Value: 1 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: ARG3 +Value: +Extension: exten +Application: Return +AppData: + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-q +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: DIALSTATUS_CW +Value: +Extension: s +Application: Set +AppData: DIALSTATUS_CW= + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: s +Application: +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?next2 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: dstring +Application: Set +AppData: DSTRING= +Variable: DSTRING +Value: + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 5 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 7951667 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/12/sip +Variable: THISDIAL +Value: PJSIP/12/sip + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __DAY=24 + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: DSTRING=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 1 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: DSTRING +Value: PJSIP/12/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +14:46:56 + +Event: VarSe +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: s +Application: GotoIf +AppData: 0?skiptrace +Variable: MACRO_DEPTH +Value: 1 + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 30 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() +Variable: MACRO_DEPTH +Value: 1 + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7951 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +14:46:56 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: ARGC +Value: +Extension: ctset +Application: Return +AppData: + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: LOCAL(ARG1) +Value: yes +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) +Extension: recordcheck +Application: Goto +AppData: yes + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 172450 +Linkedid: 1724499962.10526 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724500015.10538 +Linkedid: 172449 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-13-79516679774-20240824-144655-1724500015.10538 +Variable: __CALLFILENAME +Value: external-13-79516679774-20240824-144655-1724500015.10538 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: ALERT_INFO +Value: +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: s +Application: Ex +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: DB_RESULT +Value: +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Return +AppData: + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 172 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 10 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: s +Application: GotoIf +AppData: 0?continue +Variable: MACRO_DEPTH +Value: 2 + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 17 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: s +Application: GotoIf +AppData: 1?next2 +Variable: MACRO_DEPTH +Value: 2 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: +Extension: dstring +Application: Set +AppData: DSTRING= + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: dstring +Priority: 5 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: +Linkedid: 1724499962.10526 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: THISDIAL +Value: PJSIP/13/sip + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: dstring +Application: Set +AppData: ITER=2 +Variable: ITER +Value: 2 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: dstring +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctse +Priority: 30 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 795166 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 32 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +14:46:56 + +Event: Newexten +Privilege: dialpl +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?func-set-sipheader,s,1(Alert-Info,) + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: __KEEPCID +Value: TRUE + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_PRIORITY +Value: 50 + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTt + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 172450 +Linkedid: 1724499962.10526 +Variable: DIALEDTIME_MS +Value: +Extension: s +Application: Dial +AppData: PJSIP/13/sip + + +14:46:56 + +Event: VarS +Privilege: dialplan,all +Channel: PJSIP/13-000012c1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Variable: __MIXMON_ID +Value: + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012c1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Variable: __EXTTOCALL +Value: 13 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012c1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000012bc + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012c1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: from-internal +Exten: 13 +Priority: 1 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Variable: __DIRECTION +Value: +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: MacroExit +AppData: + + +14:46:56 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724500 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 79217365096 +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500015.10540 +Linkedid: 1724499962.10526 +Variable: __RECORD_ID +Value: Local/12@from-queue-00000b2b;2 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c2 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500015.10540 +Linkedid: 1724499962.10526 +Variable: __EXTTOCA +Value: 12 + + +14:46:56 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c2 +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500015.10540 +Linkedid: 1724499962.10526 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000012bc + + +14:46:56 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: +ChannelStateDesc: Ringing +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500015.10535 +Linkedid: 1724499962.10526 +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/12-000012c2 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724500015.10540 +DestLinkedid: 1724499962.10526 +DialString: 12/sip +Device: Local/13@from-queue +State: INUSE + + +14:46:56 + +Event: RTCPSent +Privilege: reporting,all +Device: Local/12@from-queue +State: INUSE +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +DestChannel: Local/12@from-queue-00000b2b;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500015.10535 +DestLinkedid: 1724499962.10526 +DialStatus: RINGING +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5b3766b1 +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724500016.439412 +SentRTP: 239849 +SentPackets: 1480 +SentOctets: 236401 +Report0SourceSSRC: 0x000901ec +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 6031 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 1 +Report0LSR: 904543600 +Report0DLSR: 3.0570 + + +14:46:58 + +Event: ExtensionStatus +Privilege: call,all +Channel: PJSIP/12-000012c2 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724500015.10540 +Linkedid: 1724499962.10526 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 8 +StatusText: Ringing + + +14:46:58 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: RINGTIME_MS +Value: 2659 +DestChannel: Local/12@from-queue-00000b2b;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500015.10535 +DestLinkedid: 1724499962.10526 +DialStatus: RINGING + + +14:46:59 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 3365 +DestChannel: Local/13@from-queue-00000b2c;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500015.10537 +DestLinkedid: 1724499962.10526 +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:47:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: 194 +Application: QueueLog +AppData: 194,1724500010.10534,NONE,DID,79217365096 + + +14:47:01 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:47:01 + +Event: MusicOn +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: QUEUEJOINTIME +Value: 1724500021 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Queue: 194 +Position: 3 +Count: 3 + + +14:47:01 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 + + +14:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +14:47:08 + +Event: BridgeLeave +Privilege: call,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 6 +ChannelStateDesc: +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: 8f5f9bda-7534-4b2c-8376-8fba602d167b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +14:47:08 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 8f5f9bda-7534-4b2c-8376-8fba602d167b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: mac +Exten: s +Priority: 55 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: ARG2 +Value: 10 + + +14:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 55 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: ARG5 +Value: + + +14:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724499920.10522 +Linkedid: 1724499909.10516 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: + + +14:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012bb +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79539020670 +ConnectedLineName: 79539020670 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724499920.10525 +Linkedid: 1724499909.10516 +Cause: 16 +DestChannel: Local/10@from-queue-00000b28;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79539020670 +DestConnectedLineName: 79539020670 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724499920.10521 +DestLinkedid: 1724499909.10516 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +HoldTime: 12 +TalkTime: 96 +Reason: agent +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle + + +14:47:08 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000b28;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: r +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724499920.10521 +Linkedid: 1724499909.10516 +Cause: 16 +Cause-txt: Normal Clearing +Variable: BRIDGEPEER +Value: +BridgeUniqueid: 8a6ecd7c-ecb8-4a01-884a-9163b2c4ba9e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none +Device: Local/10@from-queue +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 315 +LastCall: 1724500028 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:47:08 + +Event: VarSe +Privilege: dialplan,all +AccountCode: +Source: 79539020670 +Destination: 10 +DestinationContext: ext-local +CallerID: "79539020670" <79539020670> +Channel: PJSIP/Megafon_3-000012b8 +DestinationChannel: PJSIP/10-000012bb +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 107 +BillableSeconds: 95 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724499920.10522 +UserField: +Device: Local/10@from-queue +State: NOT_INUSE +BridgeUniqueid: 8a6ecd7c-ecb8-4a01-884a-9163b2c4ba9e +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_PRIORITY +Value: 1 + + +14:47:08 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: + + +14:47:08 + +Event: Cdr +Privilege: cdr,all +Channel: PJSIP/Megafon_3-000012b8 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000123; mintxmes=085.367285; maxtxmes=085.367289; avgtxmes=085.367288; stdevtxmes=000.000001; +Source: 79539020670 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79539020670" <79539020670> +DestinationChannel: Local/12@from-queue-00000b26;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 22 +BillableSeconds: 22 + + +14:47:08 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/MEGAFON_3 +ActionID: 10556 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79539020670 +CallerIDName: 79539020670 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724499909.10516 +Linkedid: 1724499909.10516 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79539020670 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79539020670" <79539020670> +DestinationChannel: Local/10@from-queue-00000b28;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 107 +BillableSeconds: 107 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724499909.10516 +UserField: + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-dial-one +Hint: PJSIP/13&Custom +Status: 1 +StatusText: InUse +Channel: PJSIP/13-000012c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Priority: 1 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: auto-blkvm +Device: PJSIP/13 +State: INUSE + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 425 +LastCall: 1724493861 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 2 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/13-000012c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79516679774 +ConnectedLineName: 795166 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 3 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +14:47:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +14:47:09 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000012bc)= + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +14:47:09 + +Event: NewCallerid +Privilege: call,all +Channel: Local/13@from-queue-00000b2c;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: from-queu +Exten: 194 +Priority: 1 +Uniqueid: 1724500015.10537 +Linkedid: 1724499962.10526 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +DestChannel: PJSIP/13-000012c1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724500015.10539 +DestLinkedid: 1724499962.10526 +DialStatus: ANSWER + + +14:47:09 + +Event: De +Privilege: call,all +Channel: Local/12@from-queue-00000b2b;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500015.10535 +Linkedid: 1724499962.10526 +DestChannel: Local/12@from-queue-00000b2b;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500015.10535 +DestLinkedid: 1724499962.10526 +DialStatus: CANCEL +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Device: Local/12@from-queue +State: NOT_INUSE +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Queue: 194 +Position: 1 +Count: 2 +Variable: MACRO_DEPTH +Value: 1 +DestChannel: PJSIP/12-000012c2 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724500015.10540 +DestLinkedid: 1724499962.10526 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 56 +RingTime: 13 +BridgeUniqueid: ff26ec9e-180b-4e0e-9cb7-6171be08610b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: ARG3 +Value: + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2b;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_EXTEN +Value: h +Cause: 26 +Extension: h +Application: Macro +AppData: hangupcall, +Cause-txt: Answered elsewhere + + +14:47:09 + +Event: BridgeEnter +Privilege: call,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/12&Custom +Status: 1 +StatusText: Idle +Extension: s +Application: GotoIf +AppData: 1?theend +Device: PJSIP/12 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: ff26ec9e-180b-4e0e-9cb7-6171be08610b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +UserEvent: refreshcallhistory +Value: 0 +Family: refreshcallhistory +Channel: Local/12@from-queue-00000b2b;2 +ActionID: 10557 +BridgeUniqueid: ff26ec9e-180b-4e0e-9cb7-6171be08610b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500015.10536 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Extension: s +Application: Hangup +AppData: + + +14:47:09 + +Event: BridgeEnter +Privilege: call,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 1 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 26 +Cause-txt: Answered elsewhere +Device: Local/12@from-queue +State: NOT_INUSE +Source: 79516679774 +Destination: 12 +DestinationContext: ext-local +CallerID: "79516679774" <79516679774> +DestinationChannel: PJSIP/12-000012c2 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 13 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500015.10536 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10559 +Extension: s +Application: AppDial +AppData: (Outgoing Line) +BridgeUniqueid: 9c30edc3-1929-457d-b8fa-58d54c507ea3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: BRIDGEPVTCALLID +Value: 8d195cda-ffa8-429c-ac63-eaa159cb6463 + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500029.10541 +Linkedid: 1724499985.10533 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500029.10541 +Linkedid: 1724499985.10533 +Variable: __MOHCLASS +Value: + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-que +Exten: 12 +Priority: 1 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: __TTL +Value: 64 + + +14:47:09 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500029.105 +Linkedid: 1724499985.10533 +Variable: __YEAR +Value: 2024 + + +14:47:10 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b2d;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500029.10541 +LocalOneLinkedid: 1724499985.10533 +LocalTwoChannel: Local/12@from-queue-00000b2d;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79522006990 +LocalTwoCallerIDName: 79522006990 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724500029.10542 +LocalTwoLinkedid: 1724499985.10533 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b2d;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79522006990 +DestConnectedLineName: 79522006990 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500029.10541 +DestLinkedid: 1724499985.10533 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: DB_RESULT +Value: EXTENSION + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 795 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: MACRO_CONTEXT +Value: ext-local + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: user-callerid, + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: CHANCONTEXT +Value: from-queue-00000b2d;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b2d;2 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 5 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: s +Application: Set +AppData: CHANEXTEN=12 +Variable: MACRO_DEPTH +Value: + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 13 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?report + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724500029.10542 +Linkedid: 172449998 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: __CALLEE_ACCOUNCODE +Value: + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: s +Application: Set +AppData: CALLERID(name)=79522006990 +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500029.10543 +Linkedid: 1724499985.10533 +Variable: __CWIGNORE +Value: TRUE +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: +Priority: 1 +Uniqueid: 1724500029.10543 +Linkedid: 1724499985.10533 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500029.10543 +Linkedid: 1724499985.10533 +Variable: __DIRECT +Value: INITIALIZED + + +14:47:10 + +Event: VarSet +Privilege: dialplan,a +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000012bf + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: __MON_FMT +Value: wav + + +14:47:10 + +Event: AgentCalled +Privilege: a +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b2e;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500029.10543 +LocalOneLinkedid: 1724499985.10533 +LocalTwoChannel: Local/10@from-queue-00000b2e;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79522006990 +LocalTwoCallerIDName: 79522006990 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724500029.10544 +LocalTwoLinkedid: 1724499985.10533 +LocalOptimization: No + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 4 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +DestChannel: Local/10@from-queue-00000b2e;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724500029.10543 +DestLinkedid: 1724499985.10533 +DialString: Local/10@from-queue/n +Extension: 10 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: __RINGTIMER +Value: 60 +Extension: 10 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: TOUCH_MONITOR +Value: 1724500029.10544 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724500029.10544 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000b2e;2 +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: HOTDESCKCHAN +Value: 10@from-queue-00000b2e;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000b2e;2 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79522006990 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79522006990 +ConnectedLineName: 79522006990 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 2 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79522006990-20240824-144709-1724500029.10542 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: __RECORD_ID +Value: Local/12@from-queue-00000b2d;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000b2d;2 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 172 +Linkedid: 1724499985.10533 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG3 +Value: + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: +Linkedid: 1724499985.10533 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: dstring +Application: Set +AppData: DEVICES=12 +Variable: DEVICES +Value: 12 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724500 +Linkedid: 1724499985.10533 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1 +Linkedid: 1724499985.10533 +Extension: ctset +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: s +Application: GosubI +AppData: 0?Set(CHANNEL(musicclass)=) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-on +Exten: s +Priority: 50 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: DIALSTA +Value: 2 +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: PROGRESSTIME_MS +Value: + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_EXTEN +Value: 10 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: __TIMESTR +Value: 20240824-144709 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-144709 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: LOCAL(ARG3) +Value: 10 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79522006990) + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.1 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79522006990-20240824-144709-1724500029.10544.wav,abi(), + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79522006990-20240824-144709-1724500029.10544.wav + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724500029.10544 +Linkedid: 172 +Extension: exten +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 9 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +14:47:10 + +Event: Newexten +Privilege: dia +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: THISDIAL +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10/sip +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial +Exten: dstring +Priority: 15 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +14:47:10 + +Event: VarSet +Privilege: di +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724500029.10544 +Linkedid: +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724500029.1 +Linkedid: 1724499985.10533 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_CONTEXT +Value: macro-exten-vm +Extension: s +Application: MacroExit +AppData: + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 53 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/1 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALEDTIME +Value: + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012c3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500029.10545 +Linkedid: +Variable: __QCONTEXT +Value: 0 + + +14:47:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000012c3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79522006990 +ConnectedLineName: 79522006990 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724500029.10545 +Linkedid: 1724499985.10533 +Variable: __DIRECTION +Value: +Extension: 10 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012c3 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79522006990 +ConnectedLineName: 79522006990 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724500029.10545 +Linkedid: 1724499985.10533 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500029.10546 +Linkedid: 1724499985.10533 +Variable: __REC_STATUS +Value: RECORDING +Extension: s +Application: Return +AppData: + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500029.10546 +Linkedid: 1724499985.10533 +Variable: __PICKUPMARK +Value: 12 + + +14:47:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c4 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратур +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500029.10546 +Linkedid: 1724499985.10533 +Variable: __NODEST +Value: 194 + + +14:47:10 + +Event: MusicOnHoldStop +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: Local/10@from-queue-00000b2e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79522006990 +DestConnectedLineName: 79522006990 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500029.10543 +DestLinkedid: 1724499985.10533 +DialString: 10/sip +DialStatus: RINGING +Device: Local/10@from-queue +State: INUSE + + +14:47:10 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +DestChannel: Local/12@from-queue-00000b2d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79522006990 +DestConnectedLineName: 79522006990 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500029.10541 +DestLinkedid: 1724499985.10533 +DialString: 12/sip +Device: Local/12@from-queue +State: INUSE +DialStatus: RINGING + + +14:47:12 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000012c3 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79522006990 +ConnectedLineName: 79522006990 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724500029.10545 +Linkedid: 1724499985.10533 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) + + +14:47:12 + +Event: DialState +Privilege: call,all +Device: PJSIP/10 +State: RINGING +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: RINGTIME_MS +Value: 2832 +DestChannel: Local/10@from-queue-00000b2e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79522006990 +DestConnectedLineName: 79522006990 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500029.10543 +DestLinkedid: 1724499985.10533 +DialStatus: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 315 +LastCall: 1724500028 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:47:13 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Device: PJSIP/12 +State: RINGING +Variable: RINGTIME_MS +Value: 3525 +DestChannel: Local/12@from-queue-00000b2d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79522006990 +DestConnectedLineName: 79522006990 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500029.10541 +DestLinkedid: +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:47:17 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000144; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; +DestChannel: Local/12@from-queue-00000b2d;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79522006990 +DestConnectedLineName: 79522006990 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500029.10541 +DestLinkedid: 1724499985.10533 +DialStatus: CANCEL + + +14:47:17 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000b2e;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79522006990 +ConnectedLineName: 79522006990 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724 +Linkedid: 1724499985.10533 +DestChannel: Local/10@from-queue-00000b2e;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79522006990 +DestConnectedLineName: 79522006990 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500029.10543 +DestLinkedid: 1724499985.10533 +DialStatus: CANCEL +Cause: 0 +Cause-txt: Unknown +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: MACRO_CONTEXT +Value: +Queue: 194 +Position: 1 +OriginalPosition: 2 +HoldTime: 41 +Count: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:47:17 + +Event: DialEnd +Privilege: call,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_DEPTH +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10561 +Extension: s +Application: GotoIf +AppData: 1?theend +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Source: 79522006990 +Destination: 12 +DestinationContext: ext-local +CallerID: "79522006990" <79522006990> +DestinationChannel: PJSIP/12-000012c4 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500029.10542 +UserField: +DestChannel: PJSIP/12-000012c4 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 + + +14:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_CONTEXT +Value: ext-local +Device: Local/10@from-queue +State: NOT_INUSE +Source: 79522006990 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79522006990" <79522006990> +DestinationChannel: Local/12@from-queue-00000b2d;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 51 +BillableSeconds: 51 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724499985.10533 +UserField: + + +14:47:17 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_PRIORITY +Value: + + +14:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2d;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 12 +ConnectedLineName: Регист +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +14:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_ +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +DestChannel: PJSIP/10-000012c3 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79522006990 +DestConnectedLineName: 79522006990 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724500029.10545 +DestLinkedid: 1724499985.10533 +DialStatus: CANCEL +Variable: MACRO_CONTEXT +Value: ext-local + + +14:47:17 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522 +CallerIDName: 79522006990 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Variable: MACRO_CONTEXT +Value: +Source: 79522006990 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79522006990" <79522006990> +DestinationChannel: Local/10@from-queue-00000b2e;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 7 +BillableSeconds: 7 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724499985.10533 +UserField: + + +14:47:18 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/12-000012c4 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 12 +CallerIDName: 79522006990 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 + + +14:47:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724499985.10533 +Linkedid: 1724499985.10533 +Extension: s +Application: GotoIf +AppData: 1?theend +Device: PJSIP/10 +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 315 +LastCall: 1724500028 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79522006990 +Destination: 10 +DestinationContext: ext-local +CallerID: "79522006990" <79522006990> +DestinationChannel: PJSIP/10-000012c3 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 7 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500029.10544 +UserField: +Variable: MACRO_DEPTH +Value: 1 + + +14:47:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Variable: RTPAUDIOQOS +Value: ssrc=1530357425;themssrc=590316;lp=0;rxjitter=0.000875;rxcount=2558;txjitter=0.000125;txcount=2538;rlp=0;rtt=0.000000;rxmes=85.367289;txmes=85.367289 + + +14:47:18 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 7952200 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500029.10542 +Linkedid: 1724499985.10533 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: + + +14:47:18 + +Event: Hangup +Privilege: call,all +Channel: Local/10@from-queue-00000b2e;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500029.10544 +Linkedid: 1724499985.10533 +Cause: 16 +Cause-txt: Normal Clearing +UserEvent: refreshcallhistory +Value: +Family: refreshcallhistory +ActionID: 10562 +Device: Local/12@from-queue +State: NOT_INUSE +Variable: MACRO_PRIORITY +Extension: s +Application: Hangup +AppData: + + +14:47:18 + +Event: RTCPReceived +Privilege: reporting,all +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/Megafon_3-000012c0 +ActionID: 10566 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842f35f6 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8697718.388992 +SentRTP: 26453244 +SentPackets: 1346 +SentOctets: 215360 +Report0SourceSSRC: 0x01be2d33 +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 11174 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500043.10547 +Linkedid: 1724500010.10534 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500043.10547 +Linkedid: 1724500010.10534 +Variable: __MOHCLASS +Value: + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-que +Exten: 12 +Priority: 1 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: __TTL +Value: 64 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500043.105 +Linkedid: 1724500010.10534 +Variable: __YEAR +Value: 2024 + + +14:47:23 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b2f;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500043.10547 +LocalOneLinkedid: 1724500010.10534 +LocalTwoChannel: Local/12@from-queue-00000b2f;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79217072323 +LocalTwoCallerIDName: 79217072323 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724500043.10548 +LocalTwoLinkedid: 1724500010.10534 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b2f;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500043.10547 +DestLinkedid: 1724500010.10534 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500043.10549 +Linkedid: 1724500010.10534 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500043.10549 +Linkedid: 1724500010.10534 +Variable: __RINGINGSENT +Value: FALSE + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500043.10549 +Linkedid: 1724500010.10534 +Variable: DIALEDPEERNUMBER +Value: 10@from-queue/n + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: __FROMQUEUEEXTEN +Value: 79217072323 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: < +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: __TIMESTR +Value: 20240824-144650 + + +14:47:23 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b30;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500043.10549 +LocalOneLinkedid: 1724500010.10534 +LocalTwoChannel: Local/10@from-queue-00000b30;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79217072323 +LocalTwoCallerIDName: 79217072323 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724500043.10550 +LocalTwoLinkedid: 1724500010.10534 +LocalOptimization: No +DestChannel: Local/10@from-queue-00000b30;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 792170 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +DestChannel: Local/10@from-queue-00000b30;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724500043.10549 +DestLinkedid: 1724500010.10534 +DialString: Local/10@from-queue/n +Extension: 194 +Application: Goto +AppData: from-internal,12,1 +Variable: __FROMQ +Value: true + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_EXTEN +Value: 12 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b2f;2 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro- +Exten: s +Priority: 5 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=12 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000b2f;2 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79217072323 + + +14:47:23 + +Event: Va +Privilege: call,all +Channel: Local/12@from-queue-00000b2f;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79217072323 +ConnectedLineName: 79217072323 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500043.10547 +Linkedid: 1724500010.10534 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 3 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 172 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,12,dontcare) + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-recor +Exten: s +Priority: 2 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __YEAR=2024 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: __MON_FMT +Value: wav +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +14:47:23 + +Event: Newexten +Privilege: dialplan, +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: MACRO_DEPTH +Value: 1 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-reco +Exten: exten +Priority: 2 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: GotoIf +AppData: 1?callee + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MA +Value: 1 +Extension: recordcheck +Application: Goto +AppData: yes + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Extension: recordcheck +Application: NoOp +AppData: Starting recording +Variable: MACRO_DEPTH +Value: 1 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-12-79217072323-20240824-144723-1724500043.10548.wav,abi(), + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000b2f;2 + + +14:47:23 + +Event: VarSet +Privilege: dial +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTt + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: DEXTEN +Value: 12 +Extension: s +Application: Set +AppData: DEXTEN=12 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Extension: s +Application: GosubIf +AppData: 0?cf,1() +Variable: MACRO_DEPTH +Value: 2 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7921707 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DEVICES=12 + + +14:47:23 + +Event: VarSet +Privilege: dialpl +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=1 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: mac +Exten: dstring +Priority: 10 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Extension: dstring +Application: GotoIf +AppData: 0?doset +Variable: MACRO_DEPTH +Value: 2 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Extension: dstring +Application: GotoIf +AppData: 0?skipset +Variable: MACRO_DEPTH +Value: 2 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 18 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +14:47:23 + +Event: VarSet +Privilege: dia +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: GOSUB_RETVAL +Value: +Extension: ctset +Application: Return +AppData: + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: ma +Exten: s +Priority: 33 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Extension: s +Application: NoOp +AppData: Blind Transfer +Variable: QAGENT +Value: 10 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 792 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: 194 +Application: Goto +AppData: from-internal,10,1 +Variable: DB_RESULT +Value: EXTENSION + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: ARG2 +Value: 10 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: ARG1 +Value: +Extension: s +Application: Macro +AppData: user-callerid, + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: CHANCONTEXT=from +Variable: MACRO_DEPT +Value: from + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: AMPUSER=79217072323 +Variable: MACRO_DEPTH +Value: 2 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010. +Extension: s +Application: Set +AppData: __KEEPCID=TRUE +Variable: MACRO_DEPTH +Value: 2 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-d +Exten: s +Priority: 50 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 3 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 7921707 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 28 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 32 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __TTL=63 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-on +Exten: s +Priority: 52 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnam)=79217072323 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: DIALSTA +Value: 2 +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: PROGRESSTIME_MS +Value: + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_EXTEN +Value: 10 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: __TIMESTR +Value: 20240824-144723 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-144723 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: LOCAL(ARG3) +Value: 10 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: ExecIf +AppData: 1?Set(RECFROMEXTEN=79217072323) + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.1 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79217072323-20240824-144723-1724500043.10550.wav,abi(), + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-10-79217072323-20240824-144723-1724500043.10550.wav + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724500043.10550 +Linkedid: 172 +Extension: exten +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +14:47:23 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=10) + + +14:47:23 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dia +Exten: s +Priority: 9 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:47:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +14:47:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: DB_RESULT +Value: 10 + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500043.10551 +Linkedid: 1724500010.10534 +Variable: __MONTH +Value: 08 +Extension: dstring +Application: Set +AppData: DEVICES=10 + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=0) +Variable: __FROMQ +Value: true + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500043.10551 +Linkedid: 1724500010.10534 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +14:47:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012c5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217072323 +ConnectedLineName: 79217072323 +Language: ru +AccountCode: +Context: from-internal +Exten: dstring +Priority: 6 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: ITER +Value: 1 +Extension: dstring +Application: Set +AppData: ITER=1 + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 8 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?docheck + + +14:47:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: dstring +Application: NoOp +AppData: Debug +Variable: MACRO_DEPTH +Value: 2 + + +14:47:24 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-000012c5 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217072323 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 13 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-que +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 16 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: ITER=2 + + +14:47:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +14:47:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 36 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +14:47:24 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 39 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 43 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __KEEPCID=TRUE + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_CONTEXT +Value: macro-dial-one +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: MacroExit +AppData: + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) +Variable: MACRO_DEPTH +Value: disabled +DestChannel: PJSIP/12-000012c5 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724500043.10551 +DestLinkedid: 1724500010.10534 +DialString: 12/sip + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500043.10 +Linkedid: 1724500010.10534 +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALEDPEERNUMBER +Value: + + +14:47:24 + +Event: Music +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: PROGRESSTIME_MS +Value: +DestChannel: Local/12@from-queue-00000b2f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500043.10547 +DestLinkedid: 1724500010.10534 +DialStatus: RINGING + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Device: Local/12@from-queue +State: INUSE +Channel: PJSIP/10-000012c6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500043.10552 +Linkedid: 1724500010.10534 +Variable: __REC_POLICY_MODE +Value: YES + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012c6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500043.10552 +Linkedid: 1724500010.10534 +Variable: __CALLEE_ACCOUNCODE +Value: + + +14:47:24 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012c6 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: RINGTIME_MS +Value: 2835 +DestChannel: Local/12@from-queue-00000b2f;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500043.10547 +DestLinkedid: 1724500010.10534 +DialStatus: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:47:26 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 6 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3169 +DestChannel: Local/10@from-queue-00000b30;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500043.10549 +DestLinkedid: +DialStatus: RINGING +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 315 +LastCall: 1724500028 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:47:53 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +DestChannel: Local/10@from-queue-00000b30;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500043.10547 +DestLinkedid: 1724500010.10534 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +RingTime: 30000 +Class: default +DialStatus: NOANSWER + + +14:47:53 + +Event: NewCallerid +Privilege: call,all +Channel: Local/10@from-queue-00000b30;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 792170 +ConnectedLineName: 79217072323 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500043.10549 +Linkedid: 1724500010.10534 +DestChannel: Local/10@from-queue-00000b30;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500043.10549 +DestLinkedid: 1724500010.10534 +DialStatus: CANCEL +Cause: 0 +Cause-txt: Unknown +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +DestChannel: PJSIP/12-000012c5 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724500043.10551 +DestLinkedid: 1724500010.10534 +DialStatus: CANCEL +Variable: MACRO_CONTEXT +Value: ext-local + + +14:47:53 + +Event: SoftHangupRequest +Privilege: call,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_PRIORITY +Value: + + +14:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 1 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: MACRO_DEPTH +Value: 1 + + +14:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Cause: 16 +Cause-txt: Normal Clearing +Hint: PJSIP/12&Custom +Status: 0 +StatusText: Idle +Device: PJSIP/12 +State: NOT_INUSE +DestChannel: PJSIP/10-000012c6 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724500043.10552 +DestLinkedid: 1724500010.10534 +DialStatus: CANCEL +Variable: ARG3 +Value: 0 + + +14:47:53 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: +Exten: s +Priority: 55 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: ARG4 +Value: +Device: Local/10@from-queue +State: NOT_INUSE + + +14:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 16 +Cause-txt: Normal Clearing +Extension: h +Application: Macro +AppData: hangupcall, + + +14:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b2f;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500043.10548 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 0 +Extension: s +Application: Hangup +AppData: +Device: PJSIP/10 +State: NOT_INUSE + + +14:47:53 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b30;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Source: 79217072323 +Destination: 12 +DestinationContext: ext-local +CallerID: "79217072323" <79217072323> +DestinationChannel: PJSIP/12-000012c5 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 30 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500043.10548 +UserField: +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Device: Local/12@from-queue +State: NOT_INUSE +Hint: PJSIP/10&Custom +Status: 1 +StatusText: Idle +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10567 +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 315 +LastCall: 1724500028 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:47:53 + +Event: RTCPSent +Privilege: reporting,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500043.10550 +Linkedid: 1724500010.10534 +Extension: s +Application: Hangup +AppData: +Source: 79217072323 +Destination: 10 +DestinationContext: ext-local +CallerID: "79217072323" <79217072323> +DestinationChannel: PJSIP/10-000012c6 +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 30 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500043.10550 +UserField: +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10572 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500078.10553 +Linkedid: 1724500010.10534 +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __NODEST +Value: 194 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500078.10553 +Linkedid: 1724500010.10534 +Variable: __MOHCLASS +Value: + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-que +Exten: 12 +Priority: 1 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: __TTL +Value: 64 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500078.105 +Linkedid: 1724500010.10534 +Variable: __YEAR +Value: 2024 + + +14:47:58 + +Event: DialBegin +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b31;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500078.10553 +LocalOneLinkedid: 1724500010.10534 +LocalTwoChannel: Local/12@from-queue-00000b31;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79217072323 +LocalTwoCallerIDName: 79217072323 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724500078.10554 +LocalTwoLinkedid: 1724500010.10534 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b31;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500078.10553 +DestLinkedid: 1724500010.10534 +Queue: 194 +Interface: Local/12@from-queue/n +MemberName: Регистратура_1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500078.10555 +Linkedid: 1724500010.10534 +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500078.10555 +Linkedid: 1724500010.10534 +Variable: __RINGINGSENT +Value: FALSE + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 2 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: __FROMQ +Value: true +Extension: 12 +Application: Set +AppData: __FROMQ=true + + +14:47:58 + +Event: VarSet +Privilege: dial +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: __SIGNORE +Value: TRUE +Extension: 194 +Application: Goto +AppData: from-internal,12,1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: __FROMQUEUEEXTEN +Value: 79217072323 +Extension: 12 +Application: GotoIf +AppData: 1?ext-local,12,1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: __RINGINGSENT +Value: TRUE +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from- +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: 12 +Application: Macro +AppData: exten-vm,novm,12,0,0,0 +Variable: MACRO_PRIORITY +Value: 3 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:58 + +Event: LocalBridge +Privilege: call,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: s +Application: Macro +AppData: user-callerid, +Variable: ARG1 +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b32;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500078.10555 +LocalOneLinkedid: 1724500010.10534 +LocalTwoChannel: Local/10@from-queue-00000b32;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79217072323 +LocalTwoCallerIDName: 79217 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro- +Exten: s +Priority: 5 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +DestChannel: Local/10@from-queue-00000b32;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724500078.10555 +DestLinkedid: 1724500010.10534 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANEXTEN=12 +DialString: Local/10@from-queue/n + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000b31;2 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79217072323 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 4 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: 10 +Application: GotoIf +AppData: 1?194,1 +Variable: __FROMQ +Value: true + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: __RINGTIMER +Value: 60 +Extension: 10 +Application: ExecIf +AppData: 0?Set(__CWIGNORE=) + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 1 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: TOUCH_MONITOR +Value: 1724500078.10556 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724500078.10556 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 792173650 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=10@from-queue-00000b32;2 +Variable: MACRO_DEPTH +Value: 2 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,al +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: HOTDESCKCHAN +Value: 10@from-queue-00000b32;2 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=10@from-queue-00000b32;2 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: ExecIf +AppData: 0?Set(HOTDESKCALL=1) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 30 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?continue + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@fr +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 49 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(number)=79217072323 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79217072323 +ConnectedLineName: 79217072323 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 2 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: RingGroupMethod +Value: none +Extension: s +Application: Set +AppData: RingGroupMethod=none + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: RT= +Variable: MACRO_DEPTH +Value: 1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: __REC_STATUS +Value: INITIALIZED +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: __MONTH=08 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 9 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MON_FMT=wav + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 2 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: CALLTYPE +Value: external +Extension: exten +Application: Set +AppData: CALLTYPE=external + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 6 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: exten +Application: GotoIf +AppData: 1?callee +Variable: MACRO_DEPTH +Value: 1 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 2 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes +Variable: MACRO_DEPTH +Value: 1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 16 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-12-79217072323-20240824-144758-1724500078.10554 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: __RECORD_ID +Value: Local/12@from-queue-00000b31;2 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/12@from-queue-00000b31;2 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 172 +Linkedid: 1724500010.10534 +Extension: recordcheck +Application: Return +AppData: +Variable: ARG3 +Value: + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: +Linkedid: 1724500010.10534 +Variable: GOSUB_RETVAL +Value: +Extension: exten +Application: Return +AppData: + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 +Variable: MACRO_DEPTH +Value: 2 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GosubIf +AppData: 0?screen,1() + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: EXTHASCW +Value: +Extension: s +Application: Set +AppData: EXTHASCW= + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 26 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: s +Application: GotoIf +AppData: 0?nodial +Variable: MACRO_DEPTH +Value: 2 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: dstring +Application: Set +AppData: DEVICES=12 +Variable: DEVICES +Value: 12 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 6 +Uniqueid: 1724500 +Linkedid: 1724500010.10534 +Extension: dstring +Application: Set +AppData: ITER=1 +Variable: MACRO_DEPTH +Value: 2 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 14 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: GotoIf +AppData: 0?begin + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 28 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ctset +Priority: 2 +Uniqueid: 1 +Linkedid: 1724500010.10534 +Extension: ctset +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 41 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: s +Application: GosubI +AppData: 0?Set(CHANNEL(musicclass)=) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 44 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-on +Exten: s +Priority: 50 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 3 + + +14:47:58 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: DB_RESULT +Value: disabled +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: DIALSTA +Value: 2 +Extension: s +Application: Dial +AppData: PJSIP/12/sip + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: PROGRESSTIME_MS +Value: + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_EXTEN +Value: 10 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=10 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,10,dontcare) + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: __TIMESTR +Value: 20240824-144758 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-144758 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500078.10557 +Linkedid: 1724500010.10534 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: DIALEDPEERNUMBER +Value: 12/sip + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: s +Priority: 1 +Uniqueid: 1724500078.10557 +Linkedid: 1724500010.10534 +Variable: __TIMESTR +Value: 20240824-144758 + + +14:47:58 + +Event: VarSet +Privilege: dial +Channel: PJSIP/12-000012c7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500078.10557 +Linkedid: 1724500010.10534 +Variable: __SIGNORE +Value: TRUE + + +14:47:58 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012c7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500078.10557 +Linkedid: 1724500010.10534 +Variable: __MOHCLASS +Value: + + +14:47:58 + +Event: VarSet +Privilege: dialp +Channel: PJSIP/12-000012c7 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79217072323 +ConnectedLineName: 79217072323 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724500078.10557 +Linkedid: 1724500010.10534 +Variable: SIPHEADERKEYS +Value: +Extension: s +Application: Set +AppData: SIPHEADERKEYS= + + +14:47:58 + +Event: NewConnectedLine +Privilege: call,all +Channel: Local/12@from +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: 79217072323 +ConnectedLineName: 79217072323 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500078.10553 +Linkedid: 1724500010.10534 +Extension: s +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: +DestChannel: PJSIP/12-000012c7 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724500078.10557 +DestLinkedid: 1724500010.10534 +DialString: 12/sip + + +14:47:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 5 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +DestChannel: Local/12@from-queue-00000b31;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500078.10553 +DestLinkedid: 1724500010.10534 +DialStatus: RINGING +Device: Local/12@from-queue +State: INUSE +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLEE=dontcare) + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: +Exten: recordcheck +Priority: 1 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against yes + + +14:47:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@f +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: recordcheck +Application: Goto +AppData: startrec +Variable: MACRO_DEPTH +Value: 1 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 19 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: __CALLFILENAME +Value: external-10-79217072323-20240824-144758-1724500078.10556 +Extension: recordcheck +Application: Set +AppData: __CALLFILENAME=external-10-79217072323-20240824-144758-1724500078.10556 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 7 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 22 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: recordcheck +Application: Set +AppData: __RECORD_ID=Local/10@from-queue-00000b32;2 +Variable: MACRO_DEPTH +Value: 1 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: recordcheck +Priority: 25 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: ARGC +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: ARG1 +Value: +Extension: exten +Application: Return +AppData: + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: ARG3 +Value: 10 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 7921736509 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 4 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: GosubIf +AppData: 0?screen,1() +Variable: MACRO_DEPTH +Value: 2 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 792170 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: MACRO_DEPTH +Value: 2 + + +14:47:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 18 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?continue + + +14:47:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 2 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: DB_RESULT +Value: 10 +Extension: dstring +Application: Set +AppData: DSTRING= + + +14:47:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: ds +Priority: 5 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: LOOPCNT=1 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 9 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dst +Priority: 13 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DIALSTATUS=CHANUNAVAIL) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 17 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: dstring +Application: GotoIf +AppData: 0?begin +Variable: MACRO_DEPTH +Value: 2 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 20 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: dstring +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +14:47:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial +Exten: ctset +Priority: 1 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: ctset +Application: Set +AppData: DB(CALLTRACE/10)=79217072323 +Variable: MACRO_DEPTH +Value: 2 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 33 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Blind Transfer + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 37 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 40 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macr +Exten: s +Priority: 44 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: GotoIf +AppData: 0?usegoto,1 +Variable: MACRO_DEPTH +Value: 2 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 51 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) +Variable: MACRO_DEPTH +Value: 2 + + +14:47:59 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: s +Application: Dial +AppData: PJSI +Variable: MACRO_DEPTH +Value: 2 + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: RINGTIME_MS +Value: + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012c8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500078.10558 +Linkedid: 1724500010.10534 +Variable: __REC_POLICY_MODE +Value: YES + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012c8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500078.10558 +Linkedid: 1724500010.10534 +Variable: __CALLEE_ACCOUNCODE +Value: + + +14:47:59 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012c8 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: RINGTIME_MS +Value: 2767 +DestChannel: Local/12@from-queue-00000b31;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500078.10553 +DestLinkedid: 1724500010.10534 +DialStatus: RINGING + + +14:48:01 + +Event: DialState +Privilege: call,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Variable: RINGTIME_MS +Value: 3362 +DestChannel: PJSIP/10-000012c8 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724500078.10558 +DestLinkedid: 1724500010.10534 +DialStatus: RINGING + + +14:48:01 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 315 +LastCall: 1724500028 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +DestChannel: Local/10@from-queue-00000b32;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500078.10555 +DestLinkedid: 1724500010.10534 +DialStatus: RINGING + + +14:48:11 + +Event: DialEnd +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000134; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; +DestChannel: Local/12@from-queue-00000b31;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500078.10553 +DestLinkedid: 1724500010.10534 +DialStatus: CANCEL + + +14:48:11 + +Event: Hangup +Privilege: +Exten: s +Context: macro-dial-one +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Priority: 55 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +DestChannel: Local/10@from-queue-00000b32;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500078.10555 +DestLinkedid: 1724500010.10534 +DialStatus: CANCEL +Cause: 0 +Cause-txt: Unknown +CID-CallingPres: 0 (Presentation Allowed, Not Screened) + + +14:48:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.1053 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: PJSIP/12-000012c7 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724500078.10557 +DestLinkedid: 1724500010.10534 +DialStatus: CANCEL +Variable: QUEUEPOSITION +Value: 1 +Queue: 194 +Position: 1 +OriginalPosition: 3 +HoldTime: 70 +Device: Queue +State: NOT_INUSE +Count: 0 + + +14:48:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Cause: 16 +Variable: MACRO_DE +Value: 1 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:48:11 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 + + +14:48:12 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b31;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MA +Value: 1 +Source: 79217072323 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79217072323" <79217072323> +DestinationChannel: Local/12@from-queue-00000b2f;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 62 +BillableSeconds: 62 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500010.10534 +UserField: +Cause: 16 +Extension: s +Application: GotoIf +AppData: 1?theend + + +14:48:12 + +Event: +Privilege: call,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +DestChannel: PJSIP/10-000012c8 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79217072323 +DestConnectedLineName: 79217072323 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724500078.10558 +DestLinkedid: 1724500010.10534 +DialStatus: CANCEL + + +14:48:12 + +Event: VarSet +Privilege: dialplan,all +Device: Local/10@from-queue +State: NOT_INUSE +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 0 + + +14:48:12 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b32;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:48:12 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/10-000012c8 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79217072323 +ConnectedLineName: 79217072323 +Language: ru +AccountCode: +Context: from-internal +Exten: 12 +Priority: 1 +Uniqueid: 1724500078.10557 +Linkedid: 1724500010.10534 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?theend +Cause: 16 +Cause-txt: Normal Clearing + + +14:48:12 + +Event: VarSet +Privilege: dialplan,all +Device: PJSIP/10 +State: NOT_INUSE +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Extension: s +Application: Hangup +AppData: +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 315 +LastCall: 1724500028 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: MACRO_EXTEN +Value: + + +14:48:12 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c0 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 4 +Uniqueid: 1724500010.10534 +Linkedid: 1724500010.10534 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000134; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +14:48:12 + +Event: Cdr +Privilege: cdr,all +Channel: LOCAL/10@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500078.10556 +Linkedid: 1724500010.10534 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/10@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10578 +Source: 79217072323 + + +14:48:12 + +Event: VarSet +Privilege: dialplan,all +AccountCode: +Source: 79217072323 +Destination: 12 +DestinationContext: ext-local +CallerID: "79217072323" <79217072323> +Channel: Local/12@from-queue-00000b31;2 +DestinationChannel: PJSIP/12-000012c7 +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 13 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500078.10554 +UserField: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Extension: s +Application: Hangup +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +14:48:12 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/12@FROM-QUEUE +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79217072323 +CallerIDName: 79217072323 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500078.10554 +Linkedid: 1724500010.10534 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/12@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10579 + + +14:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +14:48:45 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: BRIDGEPEER +Value: + + +14:48:46 + +Event: VarSet +Privilege: dialplan,all +BridgeUniqueid: 9c30edc3-1929-457d-b8fa-58d54c507ea3 +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: DIALSTATUS +Value: ANSWER + + +14:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: ARG2 +Value: + + +14:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 17245 +Linkedid: 1724499962.10526 +Variable: MACRO_EXTEN +Value: h +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012c1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724500015.10539 +Linkedid: 1724499962.10526 +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000 +Extension: s +Application: GotoIf +AppData: 1?theend + + +14:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500015.10538 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 0 +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: Hangup +AppData: +Source: 79516679774 +Destination: 13 +DestinationContext: ext-local +CallerID: "79516679774" <79516679774> +DestinationChannel: PJSIP/13-000012c1 +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 110 +BillableSeconds: 96 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724500015.10538 +UserField: + + +14:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b2c;1 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79516679774 +ConnectedLineName: 79516679774 +Language: ru +AccountCode: +Context: from-q +Exten: 13 +Priority: 53 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Cause-txt: Normal Clearing +DestChannel: Local/13@from-queue-00000b2c;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79516679774 +DestConnectedLineName: 79516679774 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500015.10537 +DestLinkedid: 1724499962.10526 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 56 +TalkTime: 96 +Reason: agent +Device: Local/13@from-queue +State: NOT_INUSE +Hint: PJSIP/13&Custom +Status: 1 +StatusText: Idle +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 426 +LastCall: 1724500125 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: MACRO_IN_HANGUP +Value: 1 +BridgeUniqueid: ff26ec9e-180b-4e0e-9cb7-6171be08610b +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Extension: h +Application: Macro +AppData: hangupcall, + + +14:48:46 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 795166797 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10581 + + +14:48:46 + +Event: VarSet +Privilege: dial +Channel: PJSIP/Megafon_3-000012bc +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Extension: s +Application: Hangup +AppData: +Variable: RTPAUDIOQOSLOSS +Value: minrxlost=000.000000; maxrxlost=000.000000; avgrxlost=000.000000; stdevrxlost=000.000000; mintxlost=000.000000; maxtxlost=000.000000; avgtxlost=000.000000; stdevtxlost=000.000000; + + +14:48:46 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79516679774 +CallerIDName: 79516679774 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724499962.10526 +Linkedid: 1724499962.10526 +Variable: RTPAUDIOQOSMES +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10583 +Source: 79516679774 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79516679774" <79516679774> +DestinationChannel: Local/13@from-queue-00000b2c;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 110 +BillableSeconds: 110 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724499962.10526 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE + + +14:51:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +14:51:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17245 +Linkedid: 1724500285.10559 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:51:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724500285. +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-145125 +Variable: __YEAR +Value: 2024 + + +14:51:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:51:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +14:51:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:51:25 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +14:51:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +14:51:25 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +14:51:25 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +14:51:25 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +14:51:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 22 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 79217365096 +Application: Set +AppData: CALLERID(num-pres)=allowed_not_screened + + +14:51:26 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: 2 +Application: AGI +AppData: agi + + +14:51:27 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +CommandId: 250417157 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +14:51:27 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +CommandId: 1150983665 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +14:51:28 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +CommandId: 1253512303 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +14:51:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724500285.105 +Linkedid: 1724500285.10559 +CommandId: 1724468916 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +14:51:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724500285.1 +Linkedid: 1724500285.10559 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +14:51:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724500285. +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +14:51:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: AMPUSER +Value: 79116018671 +Extension: s +Application: Set +AppData: AMPUSER=79116018671 + + +14:51:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +14:51:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +14:51:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +14:51:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +14:51:28 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +14:51:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +14:51:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +14:51:28 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +14:51:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +14:51:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7911 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +14:51:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +14:51:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +14:51:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +14:51:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +14:51:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:51:28 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3- +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:51:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +14:51:28 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +14:51:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 42 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: 194 +Application: QueueLog +AppData: 194,1724500285.10559,NONE,DID,79217365096 + + +14:51:37 + +Event: Newe +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 48 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: VQ_MOH +Value: +Extension: 194 +Application: ExecIf +AppData: 0?Set(CHANNEL(musicclass)=) + + +14:51:37 + +Event: QueueCallerJoin +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10 +Linkedid: 1724500285.10559 +Variable: QUEUEJOINTIME +Value: 1724500296 +Extension: 194 +Application: Queue +AppData: 194,tR,,,600,,,,, +Device: Queue +State: RINGING + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500296.10560 +Linkedid: 1724500285.10559 +Class: default +Extension: 12 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __QCONTEXT +Value: 0 + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500296.10560 +Linkedid: 1724500285.10559 +Variable: __RINGINGSENT +Value: TRUE + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500296.10560 +Linkedid: 1724500285.10559 +Variable: DIALEDPEERNUMBER +Value: 12@from-queue/n + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 12 +Priority: 1 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: __FROMQUEUEEXTEN +Value: 79116018671 + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: f +Exten: 12 +Priority: 1 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: __TIMESTR +Value: 20240824-145125 + + +14:51:37 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/12@from-queue-00000b33;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 12 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500296.10560 +LocalOneLinkedid: 1724500285.10559 +LocalTwoChannel: Local/12@from-queue-00000b33;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116018671 +LocalTwoCallerIDName: 79116018671 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 12 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724500296.10561 +LocalTwoLinkedid: 1724500285.10559 +LocalOptimization: No +DestChannel: Local/12@from-queue-00000b33;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: en +DestAccountCode: + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500296.10562 +Linkedid: 1724500285.10559 +DestChannel: Local/12@from-queue-00000b33;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724500296.10560 +DestLinkedid: 1724500285.10559 +DialString: Local/12@from-queue/n +Extension: 13 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __CWIGNORE +Value: TRUE + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500296.10562 +Linkedid: 17 +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500296.10562 +Linkedid: 1724500285.10559 +Variable: __DIRECTION +Value: + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: __BLKVM_CHANNEL +Value: PJSIP/Megafon_3-000012c9 + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: __MON_FMT +Value: wav + + +14:51:37 + +Event: AgentCalled +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 13 +Priority: 1 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: __DIRECTION +Value: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/13@from-queue-00000b34;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 13 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500296.10562 +LocalOneLinkedid: 1724500285.10559 +LocalTwoChannel: Local/13@from-queue-00000b34;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116018671 +LocalTwoCallerIDName: 79116018671 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 13 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724500296.10563 +LocalTwoLinkedid: 1724500285.10559 +LocalOptimization: No + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500296.10564 +Linkedid: 1724500285.10559 +DestChannel: Local/13@from-queue-00000b34;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 13 +DestPriority: 1 +DestUniqueid: 1724500296.10562 +DestLinkedid: 1724500285.10559 +DialString: Local/13@from-queue/n +Extension: 10 +Application: AppQueue +AppData: (Outgoing Line) +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __SIGNORE +Value: TRUE + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500296.10564 +Linkedid: 1724500285.10559 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;1 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 79217365096 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500296.10564 +Linkedid: 1724500285.10559 +Variable: __DAY +Value: 24 + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: __SIGNORE +Value: TRUE +Extension: 13 +Application: Set +AppData: __FROMQ=true + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: __CALLINGNUMPRE +Value: +Extension: 13 +Application: GotoIf +AppData: 0?hangup + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: __TIMESTR +Value: 20240824-145125 +Extension: 194 +Application: Goto +AppData: from-internal,13,1 + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: DB_RESULT +Value: EXTENSION +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +LocalOneChannel: Local/10@from-queue-00000b35;1 +LocalOneChannelState: 0 +LocalOneChannelStateDesc: Down +LocalOneCallerIDNum: 79217365096 +LocalOneCallerIDName: +LocalOneConnectedLineNum: +LocalOneConnectedLineName: +LocalOneLanguage: en +LocalOneAccountCode: +LocalOneContext: from-queue +LocalOneExten: 10 +LocalOnePriority: 1 +LocalOneUniqueid: 1724500296.10564 +LocalOneLinkedid: 1724500285.10559 +LocalTwoChannel: Local/10@from-queue-00000b35;2 +LocalTwoChannelState: 4 +LocalTwoChannelStateDesc: Ring +LocalTwoCallerIDNum: 79116018671 +LocalTwoCallerIDName: 79116018671 +LocalTwoConnectedLineNum: 79217365096 +LocalTwoConnectedLineName: +LocalTwoLanguage: en +LocalTwoAccountCode: +LocalTwoContext: from-queue +LocalTwoExten: 10 +LocalTwoPriority: 1 +LocalTwoUniqueid: 1724500296.10565 +LocalTwoLinkedid: 1724500285.10559 +LocalOptimization: No + + +14:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: from-queue +Exten: 10 +Priority: 1 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +DestChannel: Local/10@from-queue-00000b35;1 +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 79217365096 +DestCallerIDName: +DestConnectedLineNum: +DestConnectedLineName: +DestLanguage: en +DestAccountCode: +DestContext: from-queue +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724500296.10564 +DestLinkedid: 1724500285.10559 +Queue: 194 +Interface: Local/10@from-queue/n +MemberName: Регистратура_3 +DialString: Local/10@from-queue/n +Extension: 13 +Application: Set +AppData: __RINGTIMER=60 +Variable: __RINGTIMER +Value: 60 + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: en +AccountCode: +Context: from-internal +Exten: 10 +Priority: 1 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: DB_RESULT +Value: EXTENSION +Extension: 10 +Application: GotoIf +AppData: 1?ext-local,10,1 + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 7911601867 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 10 +Priority: 3 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: 10 +Application: Macro +AppData: exten-vm,novm,10,0,0,0 + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_PRIORITY +Value: 1 +Extension: s +Application: Macro +AppData: user-callerid, + + +14:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 2 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: CHANCONTEXT +Value: from-queue-00000b35;2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from-queue-00000b35;2 + + +14:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queu +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 13 +Priority: 3 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: 12 +Application: GotoIf +AppData: 1?194,1 + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: DB_RESULT +Value: EXTENSION +Extension: s +Application: Macro +AppData: user-callerid, + + +14:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 1 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: DB_RESULT +Value: 0 +Extension: 12 +Application: Set +AppData: __RINGTIMER=60 + + +14:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: ext-local +Exten: 12 +Priority: 3 +Uniqueid: 1724500296.10 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CHANCONTEXT=from + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 3 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: ARG2 +Value: 12 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=13@from-queue-00000b34;2 + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 1 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Macro +AppData: user-callerid, + + +14:51:37 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 6 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: TOUCH_MONITOR=1724500296.10561 + + +14:51:37 + +Event: Newexten +Privilege: dialplan,all +Channel: Lo +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=13@from-queue-00000b34;2 +Variable: MACRO_DEPTH +Value: 2 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 791160 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 50 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CALLERID(name)=79116018671 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user +Exten: s +Priority: 4 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: CHANEXTENCONTEXT=12@from-queue-00000b33;2 +Variable: CHANEXTENCONTEXT +Value: 12@from-queue-00000b33;2 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791160 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 8 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: HOTDESCKCHAN=12@from-queue-00000b33;2 +Variable: MACRO_DEPTH +Value: 2 + + +14:51:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79116018671 + + +14:51:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: +Priority: 28 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: NoOp +AppData: Macro Depth is 2 + + +14:51:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_EXTEN +Value: 13 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=13 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Gosub +AppData: sub-record-check,s,1(exten,13,dontcare) + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 4 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: __DAY=24 +Variable: MACRO_DEPTH +Value: 1 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: __TIMESTR +Value: 20240824-145136 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-145136 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 11 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: s +Application: ExecIf +AppData: 0?Set(ARG3=dontcare) +Variable: MACRO_DEPTH +Value: 1 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724500296.1 +Linkedid: 1724500285.10559 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 +Variable: MACRO_DEPTH +Value: 1 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: exten +Application: Set +AppData: CALLEE=yes +Variable: DB_RESULT +Value: yes + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: LOCAL(ARG3) +Value: 13 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,13) + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +14:51:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Ex +AppData: 1?Set(RECFROMEXTEN=79116018671) + + +14:51:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724500296.10563 +Linkedid: 17245002 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-13-79116018671-20240824-145136-1724500296.10563.wav,abi(), + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 24 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: recordcheck +Application: Set +AppData: CDR(recordingfile)=external-13-79116018671-20240824-145136-1724500296.10563.wav + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 1724500296.10563 +Linkedid: +Extension: exten +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 1 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_PRIORITY +Value: 7 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),13 + + +14:51:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=13) + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 9 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?nodial + + +14:51:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 13 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: s +Application: GotoIf +AppData: 0?docfu +Variable: MACRO_DEPTH +Value: 2 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ri +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 1 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING= + + +14:51:38 + +Event: Newexten +Privilege: +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Set(DEVICES=3) + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: THISDIAL +Value: PJSIP/13 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13 + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 12 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/13/sip +Variable: MACRO_DEPTH +Value: 2 + + +14:51:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro- +Exten: dstring +Priority: 15 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +14:51:38 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/13/sip + + +14:51:38 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?ctset,1() + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) +Variable: D_OPTIONS +Value: HhTtrM(auto-blkvm) + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) +Variable: MACRO_DEPTH +Value: 2 + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724500296.10565 +Linkedid: 17245002 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: AMPUSER=79116018671 + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: HOTDESKCALL +Value: 0 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 791160 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_EXTEN +Value: 12 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 4 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __PICKUPMARK=12 + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: __CWIGNORE +Value: TRU +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 12 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CALLERID(name)=) + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 2 + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: RT= + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 6 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Extension: s +Application: GotoIf +AppData: 0?cnum +Variable: LOCAL(ARG3) +Value: dontcare + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: NOW=1724500296 + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-145136 + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 10 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: NoOp +AppData: Recordings initialized + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 17 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?sub-record-check,exten,1 + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 3 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Extension: exten +Application: ExecIf +AppData: 0?Set(CALLTYPE=) +Variable: DB_RESULT +Value: yes + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 791 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: LOCAL(ARG2) +Value: external +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,12) + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: en +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 53 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: CDR(cnum)=79116018671 + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 2 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10 +Extension: 194 +Application: AppQueue +AppData: (Outgoing Line) +Variable: MACRO_DEPTH +Value: 1 + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 5 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: RT= + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-r +Exten: s +Priority: 1 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?initialized + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 5 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: __MONTH=08 + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 8 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: __FROMEXTEN +Value: 79116018671 +Extension: s +Application: Set +AppData: __FROMEXTEN=79116018671 + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-re +Exten: exten +Priority: 1 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: exten +Application: NoOp +AppData: Exten Recording Check between 79116018671 and 10 +Variable: MACRO_DEPTH +Value: 1 + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 4 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: exten +Application: Set +AppData: CALLEE=yes + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 10 +Uniqueid: 1724500296.10561 +Linkedid: 1724500 +Variable: __REC_POLICY_MODE +Value: YES +Extension: recordcheck +Application: Set +AppData: __REC_POLICY_MODE=YES + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 18 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Extension: recordcheck +Application: ExecIf +AppData: 0?Set(RECFROMEXTEN=79116018671) +Variable: MACRO_DEPTH +Value: 1 + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 21 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: __MIXMON_ID +Value: +Extension: recordcheck +Application: Set +AppData: __MIXMON_ID= + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 11 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: exten +Application: Gosub +AppData: recordcheck,1(yes,external,10) +Variable: MACRO_DEPTH +Value: 1 + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 1 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: ARG3 +Value: +Extension: recordcheck +Application: NoOp +AppData: Starting recording check against ye + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: exten +Priority: 12 +Uniqueid: 17 +Linkedid: 1724500285.10559 +Variable: ARGC +Value: +Extension: exten +Application: Return +AppData: + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 9 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),12 + + +14:51:39 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 11 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: recordcheck +Application: Goto +AppData: startrec + + +14:51:39 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 2 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(__EXTTOCALL=12) + + +14:51:40 + +Event: MixMonitorStart +Privilege: call,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 20 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: recordcheck +Application: MixMonitor +AppData: 2024/08/24/external-10-79116018671-20240824-145136-1724500296.10565.wav,abi(), +Variable: MIXMONITOR_FILENAME +Value: /var/spool/asterisk/monitor/2024/08/24/external-10-79116018671-20240824-145136-1724500296.10565.wav + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 23 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: __REC_STATUS +Value: RECORDING +Extension: recordcheck +Application: Set +AppData: __REC_STATUS=RECORDING + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 25 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: recordcheck +Application: Return +AppData: +Variable: GOSUB_RETVAL +Value: + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-exten-vm +Exten: s +Priority: 7 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: s +Application: Macro +AppData: dial-one,,HhTtrM(auto-blkvm),10 +Variable: MACRO_DEPTH +Value: 1 + + +14:51:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +14:51:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: +Priority: 50 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: DEXTEN=10 +Variable: MACRO_DEPTH +Value: 3 + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 3 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: DIALSTATUS_CW= +Variable: DIALSTATUS_CW +Value: + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 5 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 11 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: EXTHASCW= +Variable: EXTHASCW +Value: + + +14:51:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 172 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?docfu + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro +Exten: s +Priority: 55 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: RINGTIME_MS +Value: + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 12 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Extension: s +Application: GotoIf +AppData: 1?next1 +Variable: MACRO_DEPTH +Value: 2 + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33; +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: LOCAL(ARGC) +Value: 0 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 3 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Extension: dstring +Application: ExecIf +AppData: 0?Return() +Variable: MACRO_DEPTH +Value: 2 + + +14:51:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: DB_RESULT +Value: PJSIP/12 +Extension: dstring +Application: Set +AppData: ITER=1 + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip +Variable: MACRO_DEPTH +Value: 2 + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-0000 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/12/sip + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 29 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 0?skiptrace + + +14:51:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 17245 +Linkedid: 1724500285.10559 +Extension: ctset +Application: Return +AppData: +Variable: MACRO_DEPTH +Value: 2 + + +14:51:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 34 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 1?Set(ALERT_INFO=) + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: L +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: DB_RESULT +Value: +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724500296.10561 +Linkedid: 172 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE + + +14:51:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 45 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: GotoIf +AppData: 1?godial + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: ARG1 +Value: +Extension: s +Application: MacroExit +AppData: + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ca +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: < +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500297.10566 +Linkedid: 1724500285.10559 +Variable: __KEEPCID +Value: TRUE +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhtrM(auto-blkvm)I) + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ca +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500297.10566 +Linkedid: +Variable: __CALLINGNAMEPRES_SV +Value: allowed_not_screened + + +14:51:40 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 54 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ca +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: ru +AccountCode: +Context: func-app +Exten: s +Priority: 4 +Uniqueid: 1724500297.10566 +Linkedid: 1724500285.10559 +Variable: func-apply-sipheaders_s_4 +Value: 0 +Extension: s +Application: While +AppData: 0 + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 7921 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Extension: s +Application: Dial +AppData: PJSIP/12/sip +Variable: ANSWEREDTIME +Value: + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012cb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-intern +Exten: s +Priority: 1 +Uniqueid: 1724500297.10567 +Linkedid: 1724500285.10559 +Variable: __KEEPCID +Value: TRUE + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012cb +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500297.10567 +Linkedid: 1724500285.10559 +Variable: __YEAR +Value: 2024 + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500297.10567 +Linkedid: 1724500285.10559 +Variable: __RVOL_MODE +Value: dontcare + + +14:51:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/12-000012cb +ChannelState: 0 +ChannelStateDesc: +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500297.10567 +Linkedid: 1724500285.10559 +Variable: __FROM_DID +Value: 79217365096 + + +14:51:40 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/12-00001 +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 12 +CallerIDName: Регистратура_1 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: ru +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 3 +Uniqueid: 1724500297.10567 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: SIPHEADERKEYS= +Variable: sipkey +Value: + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: PJSIP/13-000012ca +DestChannelState: 0 +DestChannelStateDesc: Down +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724500297.10566 +DestLinkedid: 1724500285.10559 +DialString: 13/sip + + +14:51:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 27 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: s +Application: GosubIf +AppData: 1?dstring,1() +Variable: MACRO_DEPTH +Value: 2 + + +14:51:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 4 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.105 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: ExecIf +AppData: 0?Return() + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 7 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: DB_RESULT +Value: PJSIP/10 +Extension: dstring +Application: Set +AppData: THISDIAL=PJSIP/10 + + +14:51:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 11 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: dstring +Application: NoOp +AppData: Debug + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 15 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: DSTRING +Value: PJSIP/10/sip +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: dstring +Priority: 19 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: dstring +Application: Set +AppData: DSTRING=PJSIP/10/sip +Variable: DSTRING +Value: PJSIP/10/sip + + +14:51:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 30 +Uniqueid: 1724500296.10565 +Linkedid: 17245002 +Extension: s +Application: GotoIf +AppData: 0?skiptrace +Variable: MACRO_DEPTH +Value: 2 + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 31 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: D_OPTIONS=HhTtrM(auto-blkvm) + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 35 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=) + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 38 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: s +Application: ExecIf +AppData: 0?Set(ALERT_INFO=Normal;volume=) +Variable: DB_RESULT +Value: + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 42 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: __CWIGNORE=TRUE +Variable: __CWIGNORE +Value: TRUE + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: < +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 50 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Extension: s +Application: Macro +AppData: dialout-one-predial-hook, +Variable: MACRO_DEPTH +Value: 2 + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dialout-one-predial-hook +Exten: s +Priority: 1 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_EXTEN +Value: s +Extension: s +Application: MacroExit +AppData: + + +14:51:41 + +Event: Newexten +Privilege: dialplan,all +Channel: Local/10@from +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 52 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(CWRING=r(callwaiting)) + + +14:51:41 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: ExecIf +AppData: 0?Set(D_OPTIONS=HhTtrM(auto-blkvm)g) +Device: Local/12@from-queue +State: INUSE +DestChannel: Local/13@from-queue-00000b34;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500296.10562 +DestLinkedid: 17 +DialString: 12/sip + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 79217365096 +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +DestChannel: Local/12@from-queue-00000b33;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500296.10560 +DestLinkedid: 1724500285.10559 +DialStatus: RINGING +Extension: s +Application: Dial +AppData: PJSIP/10/sip +Variable: DIALED +Value: + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012cc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500297.10568 +Linkedid: 1724500285.10559 +Variable: __REC_STATUS +Value: RECORDING + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012cc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-internal +Exten: s +Priority: 1 +Uniqueid: 1724500297.10568 +Linkedid: 1724500285.10559 +Variable: __DAY +Value: 24 + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012cc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: fr +Exten: s +Priority: 1 +Uniqueid: 1724500297.10568 +Linkedid: 1724500285.10559 +Variable: __QCONTEXT +Value: 0 + + +14:51:41 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/10-000012cc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: ru +AccountCode: +Context: from-internal +Exten: 10 +Priority: +Uniqueid: 1724500297.10568 +Linkedid: 1724500285.10559 +Variable: __DIRECTION +Value: + + +14:51:41 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/10-000012cc +ChannelState: 0 +ChannelStateDesc: Down +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: +AccountCode: +Context: func-apply-sipheaders +Exten: s +Priority: 4 +Uniqueid: 1724500297.10568 +Linkedid: 1724500285.10559 +Variable: sipkey +Value: +Extension: s +Application: While +AppData: 0 + + +14:51:41 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: +DestChannel: Local/10@from-queue-00000b35;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: func-apply-sipheaders +DestExten: s +DestPriority: 13 +DestUniqueid: 1724500297.10568 +DestLinkedid: 1724500285.10559 +DialString: 10/sip +Device: Local/10@from-queue +State: INUSE + + +14:51:41 + +Event: DialState +Privilege: call,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842f3703 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8697987.731994 +SentRTP: 104997010 +SentPackets: 596 +SentOctets: 95360 +Report0SourceSSRC: 0x5fe59f3e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3244 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 6 +Report0LSR: 0 +Report0DLSR: 0.0000 +Extension: 12 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/12 +State: RINGING +Hint: PJSIP/12&Custom +Status: 6 +StatusText: Ringing +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Variable: RINGTIME_MS +Value: 2960 +DestChannel: PJSIP/12-000012cb +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 7911 + + +14:51:41 + +Event: DialState +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +DestChannel: Local/10@from-queue-00000b35;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724500297.10568 +DestLinkedid: 1724500285.10559 +DialStatus: RINGING +Extension: 10 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/10 +State: RINGING +Hint: PJSIP/10&Custom +Status: 8 +StatusText: Ringing +Variable: RINGTIME_MS +Value: 3639 + + +14:51:41 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 315 +LastCall: 1724500028 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 8 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +To: 193.201.229.19 +From: 192.168.75.10 +MES: 85.4 +SSRC: 0x5fe59f3e +PT: 200(SR) +ReportCount: 1 +SentNTP: 1724500300.951492 +SentRTP: 119255 +SentPackets: 689 +SentOctets: 110087 +Report0SourceSSRC: 0x0010018f +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 7329 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 4 +Report0LSR: 922991460 +Report0DLSR: 3.0400 +Extension: 13 +Application: AppDial +AppData: (Outgoing Line) +Device: PJSIP/13 +State: RINGING +Variable: RINGTIME_MS +Value: 4280 +Hint: PJSIP/13&Custom +StatusText: Ringing +DestChannel: PJSIP/13-000012ca +DestChannelState: 5 +DestChannelStateDesc: Ring + + +14:51:41 + +Event: DialState +Privilege: call,all +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 426 +LastCall: 1724500125 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 6 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +DestChannel: Local/13@from-queue-00000b34;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500296.10562 +DestLinkedid: 1724500285.10559 +DialStatus: RINGING + + +14:51:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724500297.10566 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Device: PJSIP/13 +State: INUSE +Extension: s +Application: Macro +AppData: auto-blkvm + + +14:51:42 + +Event: VarSet +Privilege: dialplan,all +Exten: s +Context: macro-auto-blkvm +Hint: PJSIP/13&Custom +Status: 2 +StatusText: InUse +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 426 +LastCall: 1724500125 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: PJSIP/13-000012ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116018671 +ConnectedLineName: 791160 +Language: ru +AccountCode: +Priority: 3 +Uniqueid: 1724500297.10566 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: CFIGNORE= +Variable: CFIGNORE +Value: + + +14:51:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 6 +Uniqueid: 1724500297.10566 +Linkedid: 1724500285.10559 +Extension: s +Application: Set +AppData: MASTER_CHANNEL(FORWARD_CONTEXT)=from-internal +Variable: MACRO_DEPTH +Value: 1 + + +14:51:42 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/13-000012ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: ru +AccountCode: +Context: macro-blkvm-clr +Exten: s +Priority: 1 +Uniqueid: 1724500297.10566 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 2 +Extension: s +Application: Set +AppData: SHARED(BLKVM,PJSIP/Megafon_3-000012c9)= + + +14:51:42 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: ru +AccountCode: +Context: macro-auto-blkvm +Exten: s +Priority: 8 +Uniqueid: 1724500297.10566 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(num))=13/sip + + +14:51:43 + +Event: Newstate +Privilege: call,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Extension: s +Application: ExecIf +AppData: 0?Set(MASTER_CHANNEL(CONNECTEDLINE(name))=) +Variable: MACRO_PRIORITY +Value: +Hint: PJSIP/10&Custom +Status: 0 +StatusText: Idle +Source: 79116018671 +Destination: 12 +DestinationContext: ext-local +CallerID: "79116018671" <79116018671> +DestinationChannel: PJSIP/12-000012cb +LastApplication: Dial +LastData: PJSIP/12/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500296.10561 +UserField: +DestChannel: PJSIP/13-000012ca +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: macro-dial-one +DestExten: s +DestPriority: 1 +DestUniqueid: 1724500297.10566 +DestLinkedid: 1724500285.10559 +DialStatus: ANSWER + + +14:51:43 + +Event: DialEnd +Privilege: call,all +BridgeUniqueid: df8b71d8-4943-4e6d-94e4-9a08ab182c5f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Device: Local/13@from-queue +State: INUSE +Channel: PJSIP/Megafon_3-000012c +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000b35;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500296.10564 +DestLinkedid: 1724500285.10559 +DialStatus: CANCEL + + +14:51:43 + +Event: QueueCalle +Privilege: call,all +Channel: Local/10@from-queue-00000b35;1 +ChannelState: 5 +ChannelStateDesc: Ringing +CallerIDNum: 10 +CallerIDName: Регистратура_3 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: ru +AccountCode: +Context: from-queue +Exten: 194 +Priority: 1 +Uniqueid: 1724500296.10564 +Linkedid: 1724500285.10559 +Cause: 26 +Cause-txt: Answered elsewhere +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +DestChannel: Local/10@from-queue-00000b35;1 +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: from-queue +DestExten: 194 +DestPriority: 1 +DestUniqueid: 1724500296.10564 +DestLinkedid: 1724500285.10559 +DialStatus: CANCEL +Device: Queue +State: NOT_INUSE + + +14:51:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: ARG1 +Value: novm +DestChannel: PJSIP/12-000012cb +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 12 +DestCallerIDName: Регистратура_1 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 12 +DestPriority: 1 +DestUniqueid: 1724500297.10567 +DestLinkedid: 1724500285.10559 +Queue: 194 +Interface: Local/13@from-queue/n +MemberName: Регистратура_2 +HoldTime: 6 +RingTime: 5 +BridgeUniqueid: c6ce4c9f-d691-4616-8d4d-671dadd9b95d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +DialStatus: CANCEL + + +14:51:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: ARG4 +Value: + + +14:51:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Variable: MACRO_CONTEXT +Value: ext-local +Cause: 26 +Cause-txt: Answered elsewhere +Extension: h +Application: Macro +AppData: hangupcall, + + +14:51:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: DIALSTATUS +Value: CANCEL +Device: PJSIP/12 +State: NOT_INUSE +Extension: s +Application: AppDial +AppData: (Outgoing Line) +DestChannel: PJSIP/10-000012cc +DestChannelState: 5 +DestChannelStateDesc: Ringing +DestCallerIDNum: 10 +DestCallerIDName: Регистратура_3 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru +DestAccountCode: +DestContext: from-internal +DestExten: 10 +DestPriority: 1 +DestUniqueid: 1724500297.10568 +DestLinkedid: 1724500285.10559 +DialStatus: CANCEL + + +14:51:43 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 0 +BridgeUniqueid: df8b71d8-4943-4e6d-94e4-9a08ab182c5f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +14:51:43 + +Event: Newexten +Privilege: dialplan,all +Channel: Loca +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_PRIORITY +Value: +Cause: 16 +Device: Local/10@from-queue +State: NOT_INUSE +Queue: 195 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:51:43 + +Event: VarSet +Privilege: dialplan,all +Queue: 194 +MemberName: Регистратура_1 +Interface: Local/12@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 347 +LastCall: 1724497713 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +Channel: +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: ExecIf +AppData: 0?Set(CDR(recordingfile)=) + + +14:51:43 + +Event: Hangup +Privilege: call,all +Channel: Local/12@from-queue-00000b33;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 12 +ConnectedLineName: Регистратура_1 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500296.10561 +Linkedid: 1724500285.10559 +Cause: 26 +Cause-txt: Answered elsewhere +Extension: s +Application: Hangup +AppData: +Variable: MACRO_PRIORITY +Value: + + +14:51:43 + +Event: Newexten +Privilege: dialplan,all +Device: Local/12@from-queue +State: NOT_INUSE +Queue: 194 +MemberName: Регистратура_3 +Interface: Local/10@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 315 +LastCall: 1724500028 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 +BridgeUniqueid: df8b71d8-4943-4e6d-94e4-9a08ab182c5f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none +Channel: Local/10@from-queue-00000b35;2 +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 10 +ConnectedLineName: Регистратура_3 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 3 +Uniqueid: 1724500296.10565 +Linkedid: 1724500285.10559 +Variable: BRIDGEPVTCALLID +Value: 1 +Source: 79116018671 +Destination: 10 +DestinationContext: ext-local +CallerID: "79116018671" <79116018671> +DestinationChannel: PJSIP/10-000012cc +LastApplication: Dial +LastData: PJSIP/10/sip +StartTime: 2024-08-24 14 +AnswerTime: +EndTime: 2024-08-24 14 +Duration: 5 +BillableSeconds: 0 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500296.10565 +UserField: +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10585 +Extension: s +Application: ExecIf +AppData: + + +14:51:43 + +Event: BridgeEnter +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.105 +Variable: MACRO_PRIORITY +Value: +Extension: s +Application: Hangup +AppData: +Cause: 26 +Cause-txt: Answered elsewhere +BridgeUniqueid: c6ce4c9f-d691-4616-8d4d-671dadd9b95d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 2 +BridgeVideoSourceMode: none + + +14:51:43 + +Event: RTCPReceived +Privilege: reporting,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: BRIDGEPEER +Value: 1 +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10589 +Device: Local/10@from-queue +State: NOT_INUSE +To: 192.168.75.10 +From: 193.201.229.19 +RTT: 0.0000 +MES: 85.4 +SSRC: 0x842f3708 +PT: 200(SR) +ReportCount: 1 +SentNTP: 8697992.726989 +SentRTP: 105036971 +SentPackets: 846 +SentOctets: 135360 +Report0SourceSSRC: 0x5fe59f3e +Report0FractionLost: 0 +Report0CumulativeLost: 0 +Report0HighestSequence: 3488 +Report0SequenceNumberCycles: 0 +Report0IAJitter: 22 +Report0LSR: 0 +Report0DLSR: 0.0000 + + +14:52:21 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +14:52:21 + +Event: SoftHangupRequest +Privilege: call,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 53 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: BRIDGEPVTCALLID +Value: +BridgeUniqueid: c6ce4c9f-d691-4616-8d4d-671dadd9b95d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 1 +BridgeVideoSourceMode: none + + +14:52:22 + +Event: AgentComplete +Privilege: agent,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Extension: h +Application: Macro +AppData: hangupcall, +Variable: MACRO_DEPTH +Value: 1 +Hint: PJSIP/13&Custom +Status: 0 +StatusText: Idle +DestChannel: Local/13@from-queue-00000b34;1 +DestChannelState: 6 +DestChannelStateDesc: Up +DestCallerIDNum: 13 +DestCallerIDName: Регистратура_2 +DestConnectedLineNum: 79116018671 +DestConnectedLineName: 79116018671 +DestLanguage: ru + + +14:52:22 + +Event: BridgeLeave +Privilege: call,al +Channel: PJSIP/13-000012ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724500297.10566 +Linkedid: 1724500285.10559 +Extension: s +Application: GotoIf +AppData: 1?theend +Variable: BRIDGEPEER +Value: +BridgeUniqueid: c6ce4c9f-d691-4616-8d4d-671dadd9b95d +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/13@from-queue +State: NOT_INUSE + + +14:52:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7911 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: ARG1 +Value: novm +Source: 79116018671 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116018671" <79116018671> +DestinationChannel: Local/12@from-queue-00000b33;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 17 +BillableSeconds: 17 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500285.10559 +UserField: + + +14:52:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 55 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: ARG4 +Value: + + +14:52:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_PRIORITY +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:52:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/13-000012ca +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 13 +CallerIDName: Регистратура_2 +ConnectedLineNum: 79116018671 +ConnectedLineName: 79116018671 +Language: ru +AccountCode: +Context: macro-dial-one +Exten: s +Priority: 1 +Uniqueid: 1724500297.10566 +Linkedid: 1724500285.10559 +Variable: RTPAUDIOQOSJITTER +Value: minrxjitter=000.000000;maxrxjitter=000.001625;avgrxjitter=000.001081;stdevrxjitter=000.000175;mintxjitter=000.000000;maxtxjitter=000.000000;avgtxjitter=000.000000;stdevtxjitter=000.000000; +Extension: s +Application: GotoIf +AppData: 1?theend +BridgeUniqueid: df8b71d8-4943-4e6d-94e4-9a08ab182c5f +BridgeType: basic +BridgeTechnology: simple_bridge +BridgeCreator: +BridgeName: +BridgeNumChannels: 0 +BridgeVideoSourceMode: none + + +14:52:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: MACRO_EXTEN +Value: +Extension: s +Application: Hangup +AppData: +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/13 +State: NOT_INUSE + + +14:52:22 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012c9 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500285.10559 +Linkedid: 1724500285.10559 +Variable: RTPAUDIOQOSMES +Value: +Queue: 194 +MemberName: Регистратура_2 +Interface: Local/13@from-queue/n +StateInterface: hint +Membership: static +Penalty: 1 +CallsTaken: 427 +LastCall: 1724500341 +LastPause: 0 +LoginTime: 1724013099 +InCall: 0 +Status: 1 +Paused: 0 +PausedReason: +Ringinuse: 0 +Wrapuptime: 0 + + +14:52:22 + +Event: VarSet +Privilege: dialplan,all +Channel: Local/13@from-queue-00000b34;2 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Р +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Cause: 16 +Cause-txt: Normal Clearing +Extension: s +Application: Hangup +AppData: +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 0 +Family: refreshcallhistory +ActionID: 10592 +Source: 79116018671 +Destination: 194 +DestinationContext: ext-queues +CallerID: "79116018671" <79116018671> +DestinationChannel: Local/10@from-queue-00000b35;1 +LastApplication: Queue +LastData: 194,tR,,,600,,,,, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 5 +BillableSeconds: 5 +Disposition: NO ANSWER +AMAFlags: DOCUMENTATION +UniqueID: 1724500285.10559 +UserField: +Variable: MACRO_DEPTH + + +14:52:22 + +Event: UserEvent +Privilege: user,all +Channel: LOCAL/13@FROM-QUEUE +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79116018671 +CallerIDName: 79116018671 +ConnectedLineNum: 13 +ConnectedLineName: Регистратура_2 +Language: ru +AccountCode: +Context: ext-local +Exten: h +Priority: 1 +Uniqueid: 1724500296.10563 +Linkedid: 1724500285.10559 +Variable: MACRO_PRIORITY +Value: 1 +Source: 79116018671 +Destination: 13 +DestinationContext: ext-local +CallerID: "79116018671" <79116018671> +DestinationChannel: PJSIP/13-000012ca +LastApplication: Dial +LastData: PJSIP/13/sip +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 44 +BillableSeconds: 38 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724500296.10563 +UserField: +Cause: 16 +Cause-txt: Normal Clearing +Device: Local/13@from-queue +State: NOT_INUSE +UserEvent: refreshcallhistory +Family: refreshcallhistory +ActionID: 10593 + + +14:53:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T14 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +14:53:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T14 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +14:54:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162974237 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 1 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +14:54:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162974237 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 17245 +Linkedid: 1724500473.10569 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +14:54:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162974237 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724500473. +Linkedid: 1724500473.10569 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-145433 +Variable: __YEAR +Value: 2024 + + +14:54:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162974237 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:54:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162974237 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: LOCAL(ARG2) +Value: in + + +14:54:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJ +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162974237 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: GOSUB_RETVAL +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:54:33 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162974237 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 5 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: __FROM_DID +Value: 79217365096 +Extension: 79217365096 +Application: Set +AppData: returnhere=1 + + +14:54:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 78162974237 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 7 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: 79217365096 +Application: Set +AppData: CDR(did)=79217365096 +Variable: GOSUB_RETVAL +Value: + + +14:54:33 + +Event: Newstate +Privilege: call,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: 79217365096 +Application: Answer +AppData: +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __RINGINGSENT +Value: TRUE + + +14:54:33 + +Event: DeviceStateChange +Privilege: call,all +Device: PJSIP/Megafon_3 +State: INUSE + + +14:54:33 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +14:54:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +14:54:34 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: 2 +Application: AGI +AppData: agi + + +14:54:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +CommandId: 411813281 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +14:54:35 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +CommandId: 1607693545 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +14:54:36 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +CommandId: 23342092 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +14:54:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 14 +Uniqueid: 1724500473.105 +Linkedid: 1724500473.10569 +CommandId: 1776697585 +Command: EXEC Goto truestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +14:54:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 1 +Uniqueid: 1724500473.1 +Linkedid: 1724500473.10569 +Variable: ARG1 +Value: +Extension: 194 +Application: Macro +AppData: user-callerid, + + +14:54:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 4 +Uniqueid: 1724500473. +Linkedid: 1724500473.10569 +Extension: s +Application: Set +AppData: CHANCONTEXT= +Variable: MACRO_DEPTH +Value: 1 + + +14:54:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 7 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: AMPUSER +Value: 78162974237 +Extension: s +Application: Set +AppData: AMPUSER=78162974237 + + +14:54:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 10 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: s +Application: Set +AppData: HOTDESKCALL=0 +Variable: MACRO_DEPTH +Value: 1 + + +14:54:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 15 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: Set +AppData: AMPUSER= + + +14:54:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: U +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 19 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 1?report + + +14:54:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 31 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: s +Application: ExecIf +AppData: 1?Set(__CALLEE_ACCOUNCODE=) +Variable: MACRO_DEPTH +Value: 1 + + +14:54:36 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 51 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: GotoIf +AppData: 0?cnum + + +14:54:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-user-callerid +Exten: s +Priority: 54 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: s +Application: Set +AppData: CHANNEL(language)=ru +Variable: MACRO_PRIORITY +Value: + + +14:54:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 4 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: 194 +Application: Macro +AppData: blkvm-set,reset +Variable: MACRO_DEPTH +Value: 1 + + +14:54:36 + +Event: VarSet +Privilege: +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-blkvm-set +Exten: s +Priority: 4 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: MACRO_DEPTH +Value: 1 +Extension: s +Application: MacroExit +AppData: + + +14:54:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-00 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 7 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: __NODEST +Value: 194 +Extension: 194 +Application: Set +AppData: __QCONTEXT=0 + + +14:54:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 7816 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 12 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: 194 +Application: Set +AppData: VQ_AINFO= +Variable: VQ_AINFO +Value: + + +14:54:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 18 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: QCANCELMISSED +Value: +Extension: 194 +Application: Set +AppData: QRINGOPTS=R + + +14:54:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 23 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: 194 +Application: Set +AppData: QGOSUB= +Variable: VQ_OPTIONS +Value: + + +14:54:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 28 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: 194 +Application: Set +AppData: VQ_RULE= +Variable: QRULE +Value: + + +14:54:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: 194 +Application: Gosub +AppData: sub-record-check,s,1(q,194,dontcare) +Variable: LOCAL(ARGC) +Value: 3 + + +14:54:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 19 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Extension: s +Application: Gosub +AppData: recordcheck,1(dontcare,q,194) +Variable: REC_POLICY_MODE_SAVE +Value: + + +14:54:36 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3- +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +14:54:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 32 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: __CWIGNORE +Value: TRUE +Extension: 194 +Application: Set +AppData: __CWIGNORE=TRUE + + +14:54:36 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: VQ_CONFIRMMSG +Value: +Extension: 194 +Application: ExecIf +AppData: 1?Playback(custom/Privet_23_08, ) + + +14:54:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: 194 +Priority: 41 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: RTPAUDIOQOSRTT +Value: minrtt=000.000000; maxrtt=000.000000; avgrtt=000.000000; stdevrtt=000.000000; + + +14:54:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012cd +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: MACRO_DEPTH +Value: 1 +Cause: 16 +Extension: h +Application: Macro +AppData: hangupcall, + + +14:54:40 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: macro-hangupcall +Exten: s +Priority: 4 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: MACRO_CONTEXT +Value: +Extension: s +Application: Hangup +AppData: + + +14:54:40 + +Event: DeviceStateChange +Privilege: call,all +AccountCode: +Source: 78162974237 +Destination: 194 +DestinationContext: ext-queues +CallerID: "78162974237" <78162974237> +Channel: PJSIP/Megafon_3-000012cd +DestinationChannel: +LastApplication: Playback +LastData: custom/Privet_23_08, +StartTime: 2024-08-24 14 +AnswerTime: 2024-08-24 14 +EndTime: 2024-08-24 14 +Duration: 7 +BillableSeconds: 7 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724500473.10569 +UserField: +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 78162974237 +CallerIDName: 78162974237 +ConnectedLineNum: +ConnectedLineName: +Language: ru +Context: ext-queues +Exten: h +Priority: 1 +Uniqueid: 1724500473.10569 +Linkedid: 1724500473.10569 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000230; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT + + +14:54:40 + +Event: UserEvent +Privilege: user,all +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +Channel: PJSIP/MEGAFON_3 +ActionID: 10594 + + +14:59:11 + +Event: ExtensionStatus +Privilege: call,all +Exten: *275 +Context: timeconditions-toggles +Hint: Custom +Status: 1 +StatusText: InUse + + +15:07:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 1 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: GotoIf +AppData: sub-record-check,s,1(in,79217365096,dontcare) + + +15:07:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 6 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Extension: s +Application: Set +AppData: __YEAR=2024 +Variable: __YEA +Value: 08 + + +15:07:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 12 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Extension: s +Application: Set +AppData: REC_POLICY_MODE_SAVE= +Variable: __MON_FMT +Value: wav + + +15:07:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,79217365096) +Variable: FROMEXTEN +Value: 79522006990 + + +15:07:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Variable: ARG2 +Value: +Extension: recordcheck +Application: Return +AppData: + + +15:07:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 4 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Variable: GOSUB_RETVAL +Value: +Extension: 79217365096 +Application: Set +AppData: __FROM_DID=79217365096 + + +15:07:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megaf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: app-blacklist-check +Exten: s +Priority: 3 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Extension: s +Application: Return +AppData: +Variable: ARGC +Value: + + +15:07:01 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365 +Priority: 12 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Extension: 79217365096 +Application: Set +AppData: __RINGINGSENT=TRUE +CID-CallingPres: 0 (Presentation Allowed, Not Screened) +Variable: __MOHCLASS +Value: + + +15:07:01 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 13 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Extension: 79217365096 +Application: Answer +AppData: +Device: PJSIP/Megafon_3 +State: INUSE + + +15:07:01 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 79217365096 +Priority: 18 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Variable: __REVERSAL_REJECT +Value: FALSE +Extension: 79217365096 +Application: Wait +AppData: 1 + + +15:07:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 1 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened +Extension: 2 +Application: Set +AppData: DB(TC/2/INUSESTATE)=INUSE + + +15:07:02 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Extension: 2 +Application: AGI +AppData: agi + + +15:07:03 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +CommandId: 753151193 +Command: VERBOSE "Setting Timezone To +ResultCode: 200 +Result: Success + + +15:07:03 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +CommandId: 1800201072 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +15:07:03 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +CommandId: 347783748 +Command: VERBOSE "Goto +ResultCode: 200 +Result: Success + + +15:07:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 5 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +CommandId: 396393305 +Command: EXEC Goto falsestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +15:07:03 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Variable: DB_RESULT +Value: +Extension: 10 +Application: Playback +AppData: custom/Work_out + + +15:07:16 + +Event: HangupRequest +Privilege: call,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000079; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; stdevtxmes=000.000000; + + +15:07:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/Megafon_3-000012ce +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Cause: 16 +Source: 79522006990 +Destination: 10 +DestinationContext: play-system-recording +CallerID: "79522006990" <79522006990> +DestinationChannel: +LastApplication: Playback +LastData: custom/Work_out +StartTime: 2024-08-24 15 +AnswerTime: 2024-08-24 15 +EndTime: 2024-08-24 15 +Duration: 15 +BillableSeconds: 15 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724501221.10570 +UserField: +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000079; mintxmes=085.367289; maxtxmes=085.367289; avgtxmes=085.367289; + + +15:07:16 + +Event: UserEvent +Privilege: user,all +Channel: PJSIP/MEGAFON_3 +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79522006990 +CallerIDName: 79522006990 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724501221.10570 +Linkedid: 1724501221.10570 +Cause: 16 +Cause-txt: Normal Clearing +Device: PJSIP/Megafon_3 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10595 + + +15:13:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 1 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Variable: SIPDOMAIN +Value: 192.168.75.10 + + +15:13:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 2 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Variable: LOCAL(ARGC) +Value: 3 +Extension: s +Application: Set +AppData: __REC_STATUS=INITIALIZED + + +15:13:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 7 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Extension: s +Application: Set +AppData: __TIMESTR=20240824-151310 +Variable: __YEAR +Value: 2024 + + +15:13:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: s +Priority: 13 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Extension: s +Application: ExecIf +AppData: 0?Set(REC_STATUS=NO) +Variable: REC_POLICY_MODE_SAVE +Value: + + +15:13:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: in +Priority: 4 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Extension: in +Application: Gosub +AppData: recordcheck,1(dontcare,in,78162769402) +Variable: LOCAL(ARG2) +Value: in + + +15:13:10 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: sub-record-check +Exten: recordcheck +Priority: 3 +Uniqueid: 1724501590.10571 +Linkedid: 17245015 +Variable: ARG1 +Value: +Extension: recordcheck +Application: Return +AppData: + + +15:13:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 5 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Extension: 78162769402 +Application: Set +AppData: __FROM_DID=78162769402 +Variable: __FROM_DID +Value: 78162769402 + + +15:13:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 3 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Variable: GOSUB_RETVAL +Value: +Extension: s +Application: Return +AppData: + + +15:13:10 + +Event: VarSet +Privilege: +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: from-trunk +Exten: 78162769402 +Priority: 15 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Extension: 78162769402 +Application: Set +AppData: __CALLINGNAMEPRES_SV=allowed_not_screened +Variable: __REVERSAL_REJECT +Value: FALSE + + +15:13:10 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 2 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Extension: 2 +Application: Set +AppData: DB(TC/2/NOT_INUSESTATE)=NOT_INUSE +Variable: __CALLINGNUMPRES_SV +Value: allowed_not_screened + + +15:13:10 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +CommandId: 428225694 +Command: VERBOSE "Checking Group" 1 +ResultCode: 200 +Result: Success + + +15:13:11 + +Event: AGIExecEnd +Privilege: agi,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 3 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +CommandId: 584186943 +Command: VERBOSE "Group +ResultCode: 200 +Result: Success + + +15:13:11 + +Event: Newexten +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 4 +ChannelStateDesc: Ring +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: timeconditions +Exten: 2 +Priority: 6 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +CommandId: 373890833 +Command: EXEC Goto falsestate +ResultCode: 200 +Result: Success +Variable: DB_RESULT +Value: +Extension: 2 +Application: ExecIf +AppData: 0?Set(DB(TC/2)=) + + +15:13:11 + +Event: DeviceStateChange +Privilege: call,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 1 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Variable: DB_RESULT +Value: +Extension: 10 +Application: Answer +AppData: +Device: PJSIP/rt_769402 +State: INUSE + + +15:13:12 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T15 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +15:13:12 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T15 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE46-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 + + +15:13:16 + +Event: VarSet +Privilege: dialplan,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000142; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; + + +15:13:16 + +Event: Hangup +Privilege: call,all +Channel: PJSIP/rt_769402-000012cf +ChannelState: 6 +ChannelStateDesc: Up +CallerIDNum: 79524859920 +CallerIDName: 79524859920 +ConnectedLineNum: +ConnectedLineName: +Language: ru +AccountCode: +Context: play-system-recording +Exten: 10 +Priority: 2 +Uniqueid: 1724501590.10571 +Linkedid: 1724501590.10571 +Variable: RTPAUDIOQOSMES +Value: minrxmes=085.367289; maxrxmes=085.367289; avgrxmes=085.367289; stdevrxmes=000.000142; mintxmes=000.000000; maxtxmes=000.000000; avgtxmes=000.000000; stdevtxmes=000.000000; +Cause: 16 + + +15:13:16 + +Event: UserEvent +Privilege: user,all +AccountCode: +Source: 79524859920 +Destination: 10 +DestinationContext: play-system-recording +CallerID: "79524859920" <79524859920> +Channel: PJSIP/RT_769402 +DestinationChannel: +LastApplication: Playback +LastData: custom/Work_out +StartTime: 2024-08-24 15 +AnswerTime: 2024-08-24 15 +EndTime: 2024-08-24 15 +Duration: 6 +BillableSeconds: 5 +Disposition: ANSWERED +AMAFlags: DOCUMENTATION +UniqueID: 1724501590.10571 +UserField: +Device: PJSIP/rt_769402 +State: NOT_INUSE +UserEvent: refreshcallhistory +Value: 1 +Family: refreshcallhistory +ActionID: 10596 + + +15:32:42 + +Event: ChallengeSent +Privilege: security,all +EventTV: 2024-08-24T15 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +Challenge: + + +15:32:42 + +Event: SuccessfulAuth +Privilege: security,all +EventTV: 2024-08-24T15 +Severity: Informational +Service: PJSIP +EventVersion: 1 +AccountID: 31 +SessionID: 006EFB7D-6C5B-EF11-AE48-7E05777166A9@192.168.75.31 +LocalAddress: IPV4/UDP/192.168.75.10/5060 +RemoteAddress: IPV4/UDP/192.168.75.31/5060 +UsingPassword: 1 diff --git a/Check/requirements.txt b/Check/requirements.txt new file mode 100644 index 0000000..21ac661 --- /dev/null +++ b/Check/requirements.txt @@ -0,0 +1,2 @@ +colorlog +aiohttp \ No newline at end of file diff --git a/medods/.DS_Store b/medods/.DS_Store new file mode 100644 index 0000000..3e128f1 Binary files /dev/null and b/medods/.DS_Store differ diff --git a/medods/__init__.py b/medods/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/medods/asterisk_ami.py b/medods/asterisk_ami.py new file mode 100644 index 0000000..7c18a6e --- /dev/null +++ b/medods/asterisk_ami.py @@ -0,0 +1,94 @@ +import asyncio +from datetime import datetime +import os +import socket +import aiofiles +import call_handler +import config +import logging + + +def send_action(s, action): + s.send(action.encode()) + response = "" + while True: + chunk = s.recv(4096) + try: + response += chunk.decode() + except UnicodeDecodeError: + pass + if "\r\n\r\n" in response: + break + response_parts = response.split("\r\n\r\n", 1) + body = response_parts[1] + body_dict = { + line.split(":")[0].strip(): line.split(":")[1].strip() + for line in body.split("\n") + if len(line.split(":")) > 1 + } + return body_dict + + +async def full_log(event): + file_name = f"log/{datetime.now().strftime('%Y-%m-%d')}.log" + async with aiofiles.open(file_name, "a") as f: + await f.write("\n\n" + datetime.now().strftime("%H:%M:%S") + "\n\n") + for key, value in event.items(): + await f.write(f"{key}: {value}\n") + + +async def ami_listening(): + # процедура регулярной проверки соединения + async def check_connection(): + while True: + try: + await asyncio.sleep(3600) + s.send(b"Action: Ping\r\n\r\n") + await asyncio.sleep(1) + except (ConnectionError, ConnectionResetError): + if config.DEBUG: + logging.warning("Connection lost. Restarting...") + await asyncio.sleep(1) + return True # возвращаемся в начало функции ami_listening + + # проверка соединения каждые 5 секунд + conn_check_task = asyncio.create_task(check_connection()) + conn_check_task.add_done_callback(lambda t: ami_listening() if t.result() else None) + + while True: + try: + s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + logging.info("Connecting to Asterisk...") + s.connect((config.AMI_HOST, config.AMI_PORT)) + break + except ConnectionRefusedError: + logging.warning("Connection refused. Retrying...") + await asyncio.sleep(1) + + logging.info("Connected to Asterisk") + logging.info("Logging in...") + + login_action = f"Action: Login\r\nUsername: {config.AMI_USER}\r\nSecret: {config.AMI_PASSWORD}\r\n\r\n" + send_action(s, login_action) + + logging.info("Logged in") + logging.info("Listening for events...") + + events_action = "Action: Events\r\nEventMask: on\r\n\r\n" + send_action(s, events_action) + + callhandler = call_handler.CallHandler() + + try: + while True: + event = send_action(s, "") + if event: + await callhandler.handle_event(event) + if config.DEBUG: + await full_log(event) + except (KeyboardInterrupt, SystemExit): + logging.info("Exiting...") + s.close() + except ConnectionResetError: + logging.warning("Connection reset. Restarting...") + await ami_listening() diff --git a/medods/call_handler.py b/medods/call_handler.py new file mode 100644 index 0000000..c488e04 --- /dev/null +++ b/medods/call_handler.py @@ -0,0 +1,513 @@ +from datetime import datetime +import logging +import config +import medods +import aiofiles +import os + + +async def calls_to_log(in_dict): + date_dir = datetime.now().strftime("%Y-%m-%d") + date_dir_path = os.path.join("log", date_dir) + if not os.path.exists(date_dir_path): + os.makedirs(date_dir_path) + file_name = f"log/{date_dir}/{in_dict.get('Linkedid')}.log" + async with aiofiles.open(file_name, "a") as f: + await f.write(f"\n\n{datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n\n") + for key, value in in_dict.items(): + await f.write(f"{key}: {value}\n") + + +def redirect_ids(responsibles): + if type(responsibles) is not list: + responsibles = [responsibles] + resp_list = [] + for resp in responsibles: + resp_list.extend(config.REDIRECT_IDS[resp]) + return [{"id": int(x)} for x in resp_list] + + +def phone_number(number: str): + if len(number) == 6: + number = f"78162{number}" + else: + if number.startswith("8"): + number = f"7{number[1:]}" + return number + + +class CallHandler: + def __init__(self): + self.calls = {} + self.date = datetime.now().date() + self.finished = [] + + async def handle_event(self, event): + def check_linkedid(event): + linkedid = event.get("Linkedid") + try: + linkedid_split = linkedid.split(".") + uniqueid = event.get("Uniqueid") + uniqueid_split = uniqueid.split(".") + if int(linkedid_split[1]) <= int(uniqueid_split[1]): + return True + return False + except: + return False + + def check_date(): + if self.date != datetime.now().date(): + self.date = datetime.now().date() + logging.info(f"Date changed to {self.date} and reset calls database") + if config.DEBUG: + logging.warning(self.calls) + self.finished = [] + self.calls = {} + + def channel_to_responsible(channel: str): + try: + if channel.startswith("Local"): + channel_data = channel.split("@") + resp = channel_data[0] + resp_data = resp.split("/") + responsible = resp_data[-1] + int(responsible) + return responsible + except: + pass + return None + + try: + if check_linkedid(event): + if config.DEBUG: + await calls_to_log(event) + + linkedid = event.get("Linkedid") + + if linkedid in self.finished: + return + + if linkedid not in self.calls.keys(): + check_date() + context = event.get("Context") + if context == "from-internal": + self.finished.append(linkedid) + return + if context != "from-trunk": + return + if len(config.AMI_CHANNEL_FILTER) > 0: + event_channel = event.get("Channel") + if len(event_channel) < 7: + return + for filter in config.AMI_CHANNEL_FILTER: + if event_channel.startswith(filter): + await self.incoming_call(event, linkedid) + return + self.finished.append(linkedid) + return + else: + await self.incoming_call(event, linkedid) + return + else: + if event.get("ChannelStateDesc") == "Ring": + if ( + event.get("Context") == "macro-user-callerid" + and ( + event.get("Event") == "VarSet" + or ( + event.get("Event") != "Newexten" + and event.get("Variable") == "MACRO_DEPTH" + ) + ) + and event.get("Application") + not in ("ExecIf", "Goto", "Return") + ) or ( + event.get("Variable") == "DIALEDPEERNUMBER" + and event.get("Exten") in config.OPERATORS + ): + try: + uniq = event.get("Uniqueid") + if uniq != linkedid: + if ( + uniq + not in self.calls[linkedid]["records"].values() + ): + target = "records" + else: + target = "records_duble" + uniq_data = uniq.split(".") + if int(uniq_data[1]) > int(linkedid.split(".")[1]): + responsible = channel_to_responsible( + event.get("Channel") + ) + if responsible in config.OPERATORS: + if ( + responsible + in self.calls[linkedid][ + "records" + ].keys() + ): + resp_uniq = self.calls[linkedid][ + "records" + ][responsible] + if int(uniq_data[-1]) < int( + resp_uniq.split(".")[-1] + ): + return + if ( + responsible + not in self.calls[linkedid][ + "responsibles" + ] + ): + self.calls[linkedid][ + "responsibles" + ].append(responsible) + if target == "records": + if ( + responsible + in self.calls[linkedid][ + target + ].keys() + ): + free_uniq = self.calls[linkedid][ + target + ][responsible] + self.calls[linkedid][target][ + responsible + ] = uniq + for ( + dub_id, + dub_uniq, + ) in self.calls[ + linkedid + ]["records_duble"].items(): + if dub_uniq == free_uniq: + if ( + dub_id + not in self.calls[ + linkedid + ][target].keys() + ): + self.calls[linkedid][ + target + ][dub_id] = dub_uniq + self.calls[linkedid][ + "records_duble" + ].pop(dub_id) + else: + self.calls[linkedid][target][ + responsible + ] = uniq + else: + if ( + uniq + not in self.calls[linkedid][ + target + ].values() + ): + if responsible not in self.calls[ + linkedid + ]["records"].keys() or ( + responsible + in self.calls[linkedid][ + "records" + ].keys() + and self.calls[linkedid][ + "records" + ][responsible] + != uniq + ): + self.calls[linkedid][target][ + responsible + ] = uniq + return + except: + return + if ( + event.get("Context") == "sub-record-check" + and ( + ".wav" in event.get("AppData") + or "external" in event.get("AppData") + ) + and event.get("Exten") + == event.get("Extension") + == "recordcheck" + and event.get("Uniqueid") != linkedid + ): + responsible = channel_to_responsible(event.get("Channel")) + if ( + responsible in config.OPERATORS + and responsible + not in self.calls[linkedid]["responsibles"] + ): + self.calls[linkedid]["records"][responsible] = ( + event.get("Uniqueid") + ) + if ( + responsible + not in self.calls[linkedid]["responsibles"] + ): + self.calls[linkedid]["responsibles"].append( + responsible + ) + if self.calls[linkedid]["started"] is None: + if ( + ( + event.get("DialStatus") == "ANSWER" + and event.get("DestChannelStateDesc") == "Up" + ) + or event.get("Variable") + in ("BRIDGEPVTCALLID", "BRIDGEPEER") + or event.get("BridgeTechnology") == "simple_bridge" + ): + for var in config.ID_VARS: + answered = event.get(var) + if answered in self.calls[linkedid]["responsibles"]: + await self.call_started(linkedid, answered) + return + if event.get("Disposition") == "NO ANSWER": + if len(self.calls[linkedid]["responsibles"]) == 0: + if event.get("ConnectedLineNum") is not None: + self.calls[linkedid]["responsibles"].append( + event.get("ConnectedLineNum") + ) + await self.call_lost(linkedid) + return + else: + if ( + event.get("BridgeTechnology") == "simple_bridge" + and event.get("Context") == "from-internal-xfer" + and event.get("ChannelStateDesc") == "Up" + ): + self.call_transfered( + linkedid, event.get("CallerIDNum"), event.get("Exten") + ) + if ( + event.get("BridgeTechnology") + == event.get("ToBridgeTechnology") + == event.get("FromBridgeTechnology") + == "simple_bridge" + and event.get("CallerIDNum") not in config.OPERATORS + and event.get("ChannelStateDesc") == "Up" + ): + self.call_transfered( + linkedid, + event.get("ConnectedLineNum"), + event.get("CallerIDNum"), + ) + duration = int( + ( + datetime.now() - self.calls[linkedid]["started"] + ).total_seconds() + ) + if ( + ( + ( + "BillableSeconds" in event.keys() + and event.get("Disposition") == "ANSWERED" + and ( + event.get("Uniqueid") != linkedid + or ( + event.get("Cause-txt") == "Normal Clearing" + or event.get("Context") + == "macro-hangupcall" + or event.get("Application") == "Hangup" + ) + ) + ) + or ( + "TalkTime" in event.keys() + and event.get("Event") == "VarSet" + ) + or ( + event.get("Application") == "Hangup" + and event.get("Disposition") != "NO ANSWER" + and event.get("ChannelStateDesc") != "Ring" + and ( + event.get("Uniqueid") != linkedid + or event.get("Cause-txt") == "Normal Clearing" + ) + and duration > 1 + ) + or ( + event.get("AppData") == "hangupcall," + and event.get("ChannelStateDesc") == "Up" + and ( + event.get("Uniqueid") != linkedid + or event.get("Context") == "ext-queues" + ) + ) + or ( + ( + event.get("Context") == "macro-hangupcall" + and event.get("ChannelStateDesc") == "Up" + ) + and ( + event.get("Uniqueid") != linkedid + or duration > 1 + ) + and ( + ( + event.get("ConnectedLineNum") + in config.OPERATORS + or event.get("ConnectedLineNum") + in self.calls[linkedid]["responsibles"] + ) + or ( + ( + event.get("CallerIDNum") + in config.OPERATORS + or event.get("CallerIDNum") + in self.calls[linkedid]["responsibles"] + ) + and event.get("Event") == "BridgeLeave" + ) + ) + ) + or (event.get("Event") == "Cdr") + ) + and event.get("Context") != "from-internal-xfer" + and not event.get("Event").startswith("RTC") + ): + transfer_duration = None + if self.calls[linkedid]["transfered"] is not None: + transfer_duration = int( + ( + datetime.now() + - self.calls[linkedid]["transfered"] + ).total_seconds() + ) + talk_time = 0 + for var in ("BillableSeconds", "TalkTime"): + if var in event.keys(): + talk_time += int(event.get(var)) + break + if talk_time > duration: + duration = talk_time + if duration >= 1 and ( + transfer_duration is None or transfer_duration > 1 + ): + record_id = None + if ( + event.get("AppData") == "hangupcall," + and event.get("Cause") == "16" + and event.get("Context") == "ext-local" + and event.get("ConnectedLineNum") + in config.OPERATORS + and event.get("Uniqueid") != linkedid + ): + record_id = event.get("Uniqueid") + if record_id is None and duration < 2: + return + if event.get("Event") == "AttendedTransfer": + record_id = event.get("TransfereeUniqueid") + if ( + event.get("Context") == "macro-hangupcall" + and event.get("Uniqueid") != linkedid + and event.get("ConnectedLineNum") + in config.OPERATORS + and "BillableSeconds" not in event.keys() + ): + record_id = event.get("Uniqueid") + if ( + event.get("Application") == "Hangup" + and event.get("Membership") == "static" + and event.get("ConnectedLineNum") + in config.OPERATORS + and event.get("Uniqueid") != linkedid + ): + record_id = event.get("Uniqueid") + if record_id is None: + for var in config.ID_VARS: + answered = event.get(var) + if ( + answered + in self.calls[linkedid]["responsibles"] + ): + try: + record_id = self.calls[linkedid][ + "records" + ][answered] + except: + record_id = self.calls[linkedid][ + "records_duble" + ][answered] + break + if record_id is None: + answered = channel_to_responsible( + event.get("Channel") + ) + if answered in self.calls[linkedid]["responsibles"]: + try: + record_id = self.calls[linkedid]["records"][ + answered + ] + except: + record_id = self.calls[linkedid][ + "records_duble" + ][answered] + if record_id is None: + return + await self.call_finished(linkedid, duration, record_id) + return + except: + pass + + def call_transfered(self, linkedid, old_responsible, new_responsible): + try: + int(new_responsible) + if new_responsible not in self.calls[linkedid]["responsibles"]: + if old_responsible in self.calls[linkedid]["records"].keys(): + self.calls[linkedid]["records"][new_responsible] = self.calls[ + linkedid + ]["records"][old_responsible] + self.calls[linkedid]["responsibles"].append(new_responsible) + self.calls[linkedid]["transfered"] = datetime.now() + else: + if old_responsible in self.calls[linkedid]["records_duble"].keys(): + self.calls[linkedid]["records"][new_responsible] = self.calls[ + linkedid + ]["records_duble"][old_responsible] + self.calls[linkedid]["responsibles"].append(new_responsible) + self.calls[linkedid]["transfered"] = datetime.now() + except: + pass + + async def incoming_call(self, event, linkedid): + self.calls[linkedid] = { + "responsibles": [], + "started": None, + "transfered": None, + "records": {}, + "records_duble": {}, + } + exten = event.get("Exten") if event.get("Exten") else event.get("Extension") + logging.info( + f"New incoming call: ID={linkedid}, Client={phone_number(event.get('CallerIDNum'))}, Phone={exten}" + ) + await medods.incoming_call( + linkedid, phone_number(event.get("CallerIDNum")), exten + ) + + async def call_started(self, linkedid, responsible): + logging.info(f"Call started: ID={linkedid}, Responsible={responsible}") + self.calls[linkedid]["started"] = datetime.now() + await medods.call_started(linkedid, redirect_ids(responsible)) + + async def call_finished(self, linkedid, duration, record_id): + logging.info( + f"Call finished: ID={linkedid}, Duration={duration}, Record ID={record_id}" + ) + self.finished.append(linkedid) + self.calls.pop(linkedid) + await medods.call_finished(linkedid, duration) + await medods.call_record_file(linkedid, record_id) + + async def call_lost(self, linkedid): + logging.info( + f"Call lost: ID={linkedid}, responsibles: {redirect_ids(self.calls[linkedid]['responsibles'])}" + ) + await medods.call_lost( + linkedid, redirect_ids(self.calls[linkedid]["responsibles"]) + ) diff --git a/medods/config.py b/medods/config.py new file mode 100644 index 0000000..fea2111 --- /dev/null +++ b/medods/config.py @@ -0,0 +1,30 @@ +import json +from dotenv import load_dotenv +import os + +load_dotenv() + +# Настройки подключения к AMI +AMI_HOST = os.environ.get("AMI_HOST") +AMI_PORT = int(os.environ.get("AMI_PORT")) +AMI_USER = os.environ.get("AMI_USER") +AMI_PASSWORD = os.environ.get("AMI_PASSWORD") +AMI_CHANNEL_FILTER = os.environ.get("AMI_CHANNEL_FILTER").split(", ") + +RECORDS_SERVER = os.environ.get("RECORDS_SERVER") + +MEDODS_SERVER = os.environ.get("MEDODS_SERVER") +MEDODS_AUTH_VERSION = int(os.environ.get("MEDODS_AUTH_VERSION")) +MEDODS_V1_TOKEN = os.environ.get("MEDODS_V1_TOKEN") +MEDODS_V2_IDENTITY = os.environ.get("MEDODS_V2_IDENTITY") +MEDODS_V2_SECRETKEY = os.environ.get("MEDODS_V2_SECRETKEY") + +DEBUG = os.environ.get("DEBUG", "False").lower() == "true" + +REDIRECT_IDS = {} + +with open("redirect.json") as f: + REDIRECT_IDS = json.load(f) + +OPERATORS = set(REDIRECT_IDS.keys()) +ID_VARS = ("ConnectedLineNum", "CallerIDNum", "DestCallerIDNum", "Source") diff --git a/medods/logging.conf b/medods/logging.conf new file mode 100644 index 0000000..e4a7ff0 --- /dev/null +++ b/medods/logging.conf @@ -0,0 +1,23 @@ +[loggers] +keys=root + +[handlers] +keys=logconsole + +[formatters] +keys=formatter +encoding=utf-8 + +[logger_root] +level=INFO +handlers=logconsole + +[formatter_formatter] +format=%(asctime)s: [%(levelname)s] %(message)s [%(module)s.%(funcName)s():%(lineno)d] +datefmt=%Y-%m-%d %H:%M:%S + +[handler_logconsole] +class=logging.StreamHandler +level=INFO +args=(sys.stdout,) +formatter=formatter diff --git a/medods/logging_debug.conf b/medods/logging_debug.conf new file mode 100644 index 0000000..ddfecdf --- /dev/null +++ b/medods/logging_debug.conf @@ -0,0 +1,29 @@ +[loggers] +keys=root + +[handlers] +keys=logconsole,logfile + +[formatters] +keys=formatter +encoding=utf-8 + +[logger_root] +level=INFO +handlers=logconsole,logfile + +[formatter_formatter] +format=%(asctime)s: [%(levelname)s] %(message)s [%(module)s.%(funcName)s():%(lineno)d] +datefmt=%Y-%m-%d %H:%M:%S + +[handler_logconsole] +class=logging.StreamHandler +level=INFO +args=(sys.stdout,) +formatter=formatter + +[handler_logfile] +class=logging.FileHandler +level=INFO +formatter=formatter +args=("log/medods.log", "a") diff --git a/medods/main.py b/medods/main.py new file mode 100644 index 0000000..7c5a7ce --- /dev/null +++ b/medods/main.py @@ -0,0 +1,26 @@ +import asyncio +import logging +import logging.config +import os +import asterisk_ami +import config + + +async def main(): + + # Настройки логирования + if config.DEBUG: + if not os.path.exists("log"): + os.makedirs("log") + logging_conf = "logging_debug.conf" + else: + logging_conf = "logging.conf" + + logging.config.fileConfig(logging_conf) + + # Подключение к AMI + await asterisk_ami.ami_listening() + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/medods/medods.py b/medods/medods.py new file mode 100644 index 0000000..c932909 --- /dev/null +++ b/medods/medods.py @@ -0,0 +1,114 @@ +import logging +import config +import json +import jwt +import time +from aiohttp import ClientSession +import aiohttp + + +def loggingDict(title: str, data: dict) -> None: + logging.info( + f"{title}: %s", + json.dumps(data, indent=4, ensure_ascii=False).encode("utf-8").decode("utf-8"), + ) + + +def medods_token(): + if config.MEDODS_AUTH_VERSION == 1: + return config.MEDODS_V1_TOKEN + elif config.MEDODS_AUTH_VERSION == 2: + iat = int(time.time()) - 10 + exp = iat + 60 + payload = {"iss": config.MEDODS_V2_IDENTITY, "iat": iat, "exp": exp} + print(payload) + token = jwt.encode(payload, config.MEDODS_V2_SECRETKEY, algorithm="HS512") + return token + + +async def send_post_request(body: dict): + + async def post_request( + url: str, + headers: dict = None, + json: dict = None, + **kwargs, + ): + + try: + async with ClientSession() as session: + async with session.post( + url, json=json, headers=headers, **kwargs + ) as response: + response.raise_for_status() + return await response.json() + except aiohttp.ClientError as e: + if config.DEBUG: + logging.error(f"Request failed: {str(e)}") + return None + + data = {"call": body} + headers = { + "Content-Type": "application/json", + "Authorization": f"Bearer {medods_token()}", + } + if config.DEBUG: + loggingDict("Sending data to Medods", body) + r = await post_request(url=config.MEDODS_SERVER, headers=headers, json=data) + try: + res = { + "id": r["call"]["id"], + "status": r["call"]["status"], + "call_session_id": r["call"]["call_session_id"], + } + except: + res = None + loggingDict("Recieved data from Medods:", res) + else: + await post_request(url=config.MEDODS_SERVER, headers=headers, json=data) + + +async def incoming_call(call_session_id, contact_phone_number, called_phone_number): + body = { + "status": "incoming_call", + "call_session_id": call_session_id, + "contact_phone_number": contact_phone_number, + "called_phone_number": called_phone_number, + } + await send_post_request(body) + + +async def call_started(call_session_id, responsibles): + body = { + "status": "call_started", + "call_session_id": call_session_id, + "responsibles": responsibles, + } + await send_post_request(body) + + +async def call_finished(call_session_id, duration): + body = { + "status": "call_finished", + "call_session_id": call_session_id, + "duration": duration, + } + await send_post_request(body) + + +async def call_lost(call_session_id, responsibles): + body = { + "status": "call_lost", + "call_session_id": call_session_id, + "responsibles": responsibles, + } + await send_post_request(body) + + +async def call_record_file(call_session_id, uniqueid): + body = { + "status": "call_record_file", + "call_session_id": call_session_id, + "file_link": f"{config.RECORDS_SERVER}{uniqueid}", + } + await send_post_request(body) diff --git a/medods/readme.md b/medods/readme.md new file mode 100644 index 0000000..af1ec1c --- /dev/null +++ b/medods/readme.md @@ -0,0 +1,107 @@ +1. Добавить пользователя в систему Asterisk + + 1. В файл /etc/asterisk/manager_custom.conf добавить следующий текст: + ``` + [medods] + secret = 2H4x9#87A%D3 + read = all + ``` + [medods] - имя пользователя (AMI_USER) + secret - пароль пользователя (AMI_PASSWORD) + read = all - права на чтение всех событий AMI Asterisk + + 2. Применить новые настройки. Выполнить команду: + ``` + asterisk -rx "core reload" + ``` + +2. Подготовить файлы конфигурации модуля интеграции + + 1. Изменить файл .env при необходимости: + ``` + AMI_HOST=127.0.0.1 + AMI_PORT=5038 + AMI_USER=medods + AMI_PASSWORD=2H4x9#87A%D3 + # Фильтр для обработки входящих звонков по каналу поступления. Для использования нескольких каналов: вписать через ", " (запятая и пробел) + AMI_CHANNEL_FILTER=PJSIP/Megafon_3, PJSIP/rt_769402 + # Для обработки всех входящих звонков без фильтра по каналу поступления оставить значение переменной пустым + # AMI_CHANNEL_FILTER= + # Сервер для получения записей звонков в формате mp3. (Дополнительный модуль) + RECORDS_SERVER=http://192.168.75.10:3050/ + MEDODS_SERVER=http://192.168.75.248:3000/api/v2/telephony/common + # Версия авторизации на сервере Medods. На 25-08-2024 используется версия "V1". + # Указывать только цифровое обозначение версии + MEDODS_AUTH_VERSION=1 + # API Токен для версии V1. Актуален на 25-08-2024 + MEDODS_V1_TOKEN=NjlmMmYzNThlOWNjYTI5ZGNlYTYzNz + # Данные файла apiKey.csv для версии V2. Актуальны на 25-08-2024 + MEDODS_V2_IDENTITY=ddf28e8a-e6e5-449e-a927-48c0e0cebc13 + MEDODS_V2_SECRETKEY=b4bd5fafe883069f02c32ce0c9b2ba0c89e5caae42bc43852a058dbfe752ba8d + # Включение логирования событий в файлы. Если файлы не требуются: закомментировать параметр или вписать "false" + # DEBUG=true + ``` + + 2. Отредактировать файл redirect.json при изменении сотрудников регистратуры: + ``` + { + "10": [99], + "12": [99], + "13": [99] + } + ``` + В ковычках записаны номера телефонов из очереди Asterisk + В квадратных скобках список ID телефонии сотрудников из списка "Сотрудники" "Медодс", которые могут отвечать на этом номере телефона. Для внесения нескольких значений нужно добавить необходимое количество данных через ", " (запятая и пробел) + +3. Настройки модуля интеграции + + 1. Требования: + Python версии не менее 3.10, рекомендуемая версия: 3.12 + + 2. Основной файл для запуска: + "main.py" + + 3. Логирование + + 1. Консоль + С выключенным параметром DEBUG в консоль будут фиксировать короткие сообщения по каждому этапу звонка + Со включенным параметром DEBUG в консоль будет добавлена информация по отправляемым на сервер Медодс запросам и полученным от него ответам + + 2. Файлы + С выключенным параметром DEBUG никакие файлы записываться не будут + Со включенным параметром DEBUG в папке "log" (будет создана, если отсутствует) будут создаваться следующие файлы: + 1. medods.log - копия информации, направляемой в консоль + 2. <дата>.log - вся информация, получаемая от AMI Asterisk + 3. <дата>/<уникальный номер звонка>.log - информация, получаемая от AMI Asterisk только по уникальному звонку + +4. Linux Service. Для автоматического запуска и перезапуска сервиса модуля интеграции необходимо выполнить следующие действия: + 1. Создать файл medods.service по пути /etc/systemd/system со следующим содержимым: + ``` + [Unit] + Description=Medods integration service + After=mariadb.service + + [Service] + Type=simple + # Указать путь к папке и файлу размещения основного файла запуска + ExecStart=/medods/venv/bin/python /medods/main.py + WorkingDirectory=/medods/ + Restart=always + RestartSec=2 + KillMode=process + User=root + + [Install] + WantedBy=multi-user.target + ``` + 2. Выполнить следующие команды: + 1. systemctl daemon-reload + 2. systemctl medods enable + 3. systemctl start medods + +5. Профилактический перезапуск + Нужно в файл /etc/crontabs добавить слудующую строку: + ``` + 0 3 * * * root systemctl restart medods + ``` + Это позволит обеспечить бесперебойную работу системы и отложенное до следующего рабочего дня применение правок \ No newline at end of file diff --git a/medods/redirect.json b/medods/redirect.json new file mode 100644 index 0000000..1244897 --- /dev/null +++ b/medods/redirect.json @@ -0,0 +1,5 @@ +{ + "10": [99], + "12": [99], + "13": [99] +} \ No newline at end of file diff --git a/medods/requirements.txt b/medods/requirements.txt new file mode 100644 index 0000000..af338eb --- /dev/null +++ b/medods/requirements.txt @@ -0,0 +1,5 @@ +requests +PyJWT +aiohttp +aiofiles +python-dotenv \ No newline at end of file diff --git a/medods_mp3/.DS_Store b/medods_mp3/.DS_Store new file mode 100644 index 0000000..4ec6c4e Binary files /dev/null and b/medods_mp3/.DS_Store differ diff --git a/medods_mp3/main.py b/medods_mp3/main.py new file mode 100644 index 0000000..c57caea --- /dev/null +++ b/medods_mp3/main.py @@ -0,0 +1,45 @@ +import os +import subprocess +from flask import Flask, send_file + +app = Flask(__name__) + + +def find_file_by_part_name(directory, part_name): + record_file = { + "wav": None, + "mp3": None, + } + for root, dirs, files in os.walk(directory): + for file_name in files: + if part_name in file_name: + if file_name.lower().endswith(".mp3"): + record_file["mp3"] = os.path.join(root, file_name) + break + if file_name.lower().endswith(".wav"): + record_file["wav"] = os.path.join(root, file_name) + if record_file["mp3"]: + return record_file["mp3"] + if record_file["wav"]: + record_file["mp3"] = record_file["wav"][:-3] + "mp3" + with open(os.devnull, "w") as devnull: + subprocess.call( + ["ffmpeg", "-i", record_file["wav"], record_file["mp3"]], + stdout=devnull, + stderr=devnull, + ) + return record_file["mp3"] + return None + + +@app.route("/") +def get_file(path): + dir = "/var/spool/asterisk/monitor" + file_path = find_file_by_part_name(dir, path) + if file_path is not None: + return send_file(file_path, mimetype="audio/mpeg") + return "", 404 + + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=3050) diff --git a/medods_mp3/readme.md b/medods_mp3/readme.md new file mode 100644 index 0000000..d680d16 --- /dev/null +++ b/medods_mp3/readme.md @@ -0,0 +1,38 @@ +1. Настройки модуля конвертации + + 1. Требования: + Python версии не менее 3.10, рекомендуемая версия: 3.12 + + 2. Основной файл для запуска: + "main.py" + +2. Linux Service. Для автоматического запуска и перезапуска сервиса модуля ковертации необходимо выполнить следующие действия: + 1. Создать файл medods_mp3.service по пути /etc/systemd/system со следующим содержимым: + ``` + [Unit] + Description=Convert Asterisk wav to mp3 for Medods + After=medods.service + + [Service] + Type=simple + ExecStart=/medods_mp3/venv/bin/python /medods_mp3/main.py + WorkingDirectory=/medods_mp3/ + Restart=always + RestartSec=2 + KillMode=process + User=root + + [Install] + WantedBy=multi-user.target + ``` + 2. Выполнить следующие команды: + 1. systemctl daemon-reload + 2. systemctl medods_mp3 enable + 3. systemctl start medods_mp3 + +5. Профилактический перезапуск + Нужно в файл /etc/crontabs добавить слудующую строку: + ``` + 1 3 * * * root systemctl restart medods_mp3 + ``` + Это позволит обеспечить бесперебойную работу системы \ No newline at end of file diff --git a/medods_mp3/requirements.txt b/medods_mp3/requirements.txt new file mode 100644 index 0000000..8ab6294 --- /dev/null +++ b/medods_mp3/requirements.txt @@ -0,0 +1 @@ +flask \ No newline at end of file